-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
110 lines (110 loc) · 3.05 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "zipstream",
"version": "1.1.4",
"description": "A service to create and stream zipped S3 downloads to a user.",
"main": "src/index.js",
"license": "AGPL-3.0",
"author": "Anthony Lukach",
"private": false,
"engines": {
"node": ">=4.8.0",
"npm": ">=2.15.11",
"yarn": ">=0.20.3"
},
"scripts": {
"start": "gulp serve",
"start:debug": "cross-env DEBUG=zipstream:* yarn start",
"build": "gulp",
"lint": "esw *.js src --color",
"lint:watch": "yarn lint -- --watch",
"test": "cross-env NODE_ENV=test ./node_modules/.bin/mocha --ui bdd --reporter spec --colors --compilers js:babel-core/register src/tests --recursive",
"test:dist": "cross-env NODE_ENV=test ./node_modules/.bin/mocha --ui bdd --reporter spec --colors --compilers js:babel-core/register dist/tests --recursive",
"test:watch": "yarn test -- --watch",
"test:coverage": "./node_modules/.bin/nyc yarn test",
"test:check-coverage": "yarn test:coverage && ./node_modules/.bin/nyc check-coverage",
"report-coverage": "coveralls < ./coverage/lcov.info"
},
"dependencies": {
"archiver": "^2.0.0",
"async": "^2.5.0",
"aws-sdk": "^2.94.0",
"body-parser": "^1.17.2",
"compression": "^1.7.0",
"cors": "^2.8.4",
"dotenv": "^4.0.0",
"express": "^4.15.4",
"express-validation": "^1.0.2",
"express-winston": "^2.4.0",
"helmet": "^3.8.1",
"http-status": "^1.0.1",
"is-ip": "^2.0.0",
"joi": "^10.6.0",
"lazy-modules": "^1.0.0",
"method-override": "^2.3.9",
"pg-promise": "^6.4.0",
"raven": "^2.4.2",
"request": "^2.81.0",
"serve-favicon": "^2.4.5",
"uuid": "^3.1.0",
"winston": "2.3.1"
},
"devDependencies": {
"babel-cli": "6.18.0",
"babel-core": "6.18.0",
"babel-plugin-add-module-exports": "0.2.1",
"babel-plugin-transform-builtin-extend": "^1.1.2",
"babel-preset-es2015": "6.16.0",
"babel-preset-stage-2": "6.18.0",
"chai": "^3.4.1",
"commitizen": "^2.9.2",
"coveralls": "^2.11.6",
"cross-env": "3.1.3",
"cz-conventional-changelog": "1.2.0",
"del": "^2.2.0",
"eslint": "3.16.1",
"eslint-config-airbnb-base": "7.1.0",
"eslint-plugin-import": "1.16.0",
"eslint-watch": "2.1.14",
"gulp": "3.9.1",
"gulp-babel": "6.1.2",
"gulp-load-plugins": "^1.2.0",
"gulp-newer": "^1.1.0",
"gulp-nodemon": "^2.0.6",
"gulp-sourcemaps": "^1.6.0",
"gulp-util": "^3.0.7",
"husky": "^0.13.1",
"mocha": "3.2.0",
"nyc": "^11.3.0",
"run-sequence": "^1.1.5",
"sinon": "^3.2.0",
"supertest": "2.0.1",
"supertest-as-promised": "4.0.2",
"validate-commit-msg": "^2.6.1"
},
"babel": {
"presets": [
"es2015",
"stage-2"
],
"plugins": [
"add-module-exports",
[
"babel-plugin-transform-builtin-extend",
{
"globals": [
"Error",
"Array"
]
}
]
]
},
"nyc": {
"check-coverage": true,
"per-file": false,
"lines": 85,
"functions": 83,
"branches": 64,
"statements": 85
}
}