-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.49 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
53
54
55
56
57
58
59
{
"name": "better-zoo-server",
"version": "1.0.0",
"main": "bin/downloader.js",
"author": "Luca Del Bianco <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"start": "node bin/downloader.js",
"debug": "iron-node bin/downloader.js",
"test": "jest -i",
"test-debug": "node --inspect-brk ./node_modules/.bin/jest -i",
"test-watch": "jest --watch",
"lint": "eslint src/* --ignore-path .gitignore --fix",
"precommit": "lint-staged"
},
"dependencies": {
"aws-sdk": "^2.48.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.24.0",
"chalk": "^1.1.3",
"cli-progress": "^1.4.1",
"follow-redirects": "^1.8.1",
"moment": "^2.18.1",
"sox": "^0.1.0"
},
"devDependencies": {
"babel-polyfill": "^6.23.0",
"eslint": "^3.19.0",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^7.1.0",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^2.1.1",
"husky": "^0.14.3",
"iron-node": "^3.0.21",
"jest": "^22.4.2",
"lint-staged": "^7.2.0",
"prettier": "^1.10.2",
"proxyquire": "^1.8.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run test",
"pre-push": "npm run test"
}
},
"lint-staged": {
"*.js": [
"npm run lint",
"git add"
]
},
"jest": {
"verbose": true,
"setupTestFrameworkScriptFile": "<rootDir>/test/jest_setup.js"
}
}