-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.68 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
{
"name": "image-api-server-es6",
"version": "1.0.0",
"description": "Image API server version 1 with ES6 and Promise",
"main": "app.js",
"author": "Suman Choudhury <suman.choudhury@jumacro.com>",
"license": "MIT",
"private": false,
"engines": {
"node": ">=4.6.0",
"npm": ">=2.15.9",
"yarn": ">=0.20.0"
},
"scripts": {
"start": "gulp serve",
"build": "gulp",
"lint": "esw *.js server config --color",
"lint:watch": "yarn lint -- --watch",
"lint:fix": "yarn lint -- --fix",
"test": "cross-env NODE_ENV=test ./node_modules/.bin/mocha --ui bdd --reporter spec --colors --compilers js:babel-core/register ./server/**/*.test.js",
"test:watch": "yarn test -- --watch",
"test:coverage": "cross-env NODE_ENV=test ./node_modules/.bin/istanbul cover _mocha -- --ui bdd --reporter spec --colors --compilers js:babel-core/register ./server/**/*.test.js",
"test:check-coverage": "yarn test:coverage && istanbul check-coverage",
"report-coverage": "coveralls < ./coverage/lcov.info"
},
"repository": {
"type": "git",
"url": "https://github.com/jumacro/image-api.git"
},
"dependencies": {
"bluebird": "^3.4.7",
"body-parser": "^1.16.0",
"compression": "^1.6.2",
"cookie-parser": "^1.4.3",
"cors": "^2.8.1",
"debug": "^2.6.0",
"express": "^4.14.1",
"express-winston": "^2.1.3",
"helmet": "^3.4.0",
"http-status": "^1.0.1",
"jsonwebtoken": "^7.3.0",
"method-override": "^2.3.7",
"moment": "^2.17.1",
"morgan": "^1.8.0",
"multiparty": "4.1.3",
"passport": "^0.3.2",
"passport-http": "^0.3.0",
"passport-jwt": "^2.2.1",
"request": "^2.79.0",
"request-promise": "^4.1.1",
"rmdir": "^1.2.0",
"util": "0.10.3",
"winston": "^2.3.1"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-2": "^6.22.0",
"chai": "^3.5.0",
"coveralls": "^2.11.16",
"cross-env": "^3.1.4",
"del": "^2.2.2",
"eslint": "^3.15.0",
"eslint-config-airbnb-base": "^11.1.0",
"eslint-fix": "^1.0.3",
"eslint-plugin-import": "^2.2.0",
"eslint-watch": "^2.1.14",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-load-plugins": "^1.5.0",
"gulp-newer": "^1.3.0",
"gulp-nodemon": "^2.2.1",
"gulp-sourcemaps": "^2.4.1",
"gulp-util": "^3.0.8",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"run-sequence": "^1.2.2",
"supertest": "3.0.0",
"validate-commit-msg": "^2.11.1"
},
"babel": {
"presets": [
"es2015",
"stage-2"
],
"plugins": [
"add-module-exports"
]
}
}