-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 772 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 772 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "starbot",
"version": "3.0.0",
"description": "Lightweight framework for quickly and easily creating bots",
"author": {
"name": "antitim",
"email": "antitim@yandex.ru"
},
"main": "index.js",
"keywords": [
"bot"
],
"repository": "antitim/starbot",
"scripts": {
"test": "_mocha",
"lint-staged": "lint-staged"
},
"lint-staged": {
"test/*.js": "eslint",
"index.js": "eslint"
},
"pre-commit": [
"lint-staged"
],
"license": "MIT",
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.9.1",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.3.0",
"eslint-plugin-standard": "^2.0.1",
"lint-staged": "^3.3.1",
"mocha": "^3.2.0",
"pre-commit": "^1.2.2"
}
}