-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 921 Bytes
/
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
{
"name": "ZemogWorker",
"version": "5.0.0",
"description": "",
"license": "Proprietary",
"main": "worker.js",
"scripts": {
"start": "node worker.js",
"lint": "eslint -c ./.eslintrc src/**/*.js",
"lint-ci": "eslint -c ./.eslintrc src/**/*.js -f junit > eslint.xml",
"test": "node ./node_modules/mocha/bin/mocha tests --recursive",
"test-ci": "node ./node_modules/mocha/bin/mocha tests --recursive --reporter mocha-junit-reporter"
},
"engines": {
"node": ">6.0.0"
},
"dependencies": {
"archiver": "1.3.0",
"aws-sdk": "2.7.13",
"decompress": "4.0.0",
"mime-types": "2.1.17",
"moment": "2.17.1",
"recursive-readdir": "2.2.1",
"request": "2.79.0",
"rimraf": "2.5.4",
"tv4": "1.2.7",
"winston": "2.3.0",
"yargs": "6.6.0"
},
"devDependencies": {
"eslint": "3.10.2",
"mocha": "3.2.0",
"mocha-junit-reporter": "1.12.1"
}
}