-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
52 lines (52 loc) · 1.01 KB
/
package.json
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "bottr-cli",
"version": "0.1.4",
"description": "The command line tool for Bottr",
"main": "index.js",
"dependencies": {
"commander": "^2.9.0",
"dotenv": "^2.0.0",
"eslint": "^3.7.1"
},
"devDependencies": {},
"scripts": {
"lint": "eslint .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bottr-js/Bottr-CLI.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Bottr-js/Bottr-CLI/issues"
},
"homepage": "https://github.com/Bottr-js/Bottr-CLI#readme",
"bin": {
"bottr-cli": "./index.js",
"bottr": "./index.js"
},
"eslintConfig": {
"env": {
"node": true
},
"extends": "eslint:recommended",
"rules": {
"indent": [
"error",
2
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"never"
],
"no-console": 0,
"no-unused-vars": 0
}
}
}