-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
48 lines (48 loc) · 1.06 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
{
"name": "nobot",
"version": "0.0.1",
"description": "Provides automation for building Marketing Design Promotions",
"main": "index.js",
"scripts": {
"init": "node ./init.js",
"lint": "eslint src/**/*.js",
"lintFix": "eslint src/**/*.js --fix",
"test": "mocha --recursive"
},
"bin": {
"nobot": "./src/nobot.js"
},
"repository": {
"type": "git",
"url": "https://github.com/smks/nobot"
},
"keywords": [
"nobot",
"game",
"automatingwithnodejs"
],
"author": "shaun.stone",
"contributors": [],
"license": "ISC",
"dependencies": {
"axios": "0.17.1",
"colors": "1.1.2",
"commander": "2.9.0",
"fs-extra": "5.0.0",
"glob": "7.1.1",
"promisify-node": "0.4.0",
"readline-sync": "1.4.7",
"shelljs": "0.7.7"
},
"devDependencies": {
"chai": "^4",
"eslint": "^4",
"eslint-config-airbnb": "^16",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"mocha": "^4",
"mock-require": "^2",
"sinon": "^4"
}
}