-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.83 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.83 KB
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
{
"name": "node-express-es6-base",
"version": "0.0.1",
"private": true,
"description": "node.js express.js ES6-compliant base package",
"keywords": [
"node",
"express",
"es6"
],
"author": "Ragavan Thiru, Ramindu Deshapriya, Ashantha Lahiru Egodaarachchi",
"license": "MIT License v2.0",
"main": "app.js",
"engines": {
"npm": ">=3.10.10 <4",
"node": ">=6.9.2 <7"
},
"dependencies": {
"awilix": "^2.7.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-node6": "^11.0.0",
"babel-register": "^6.26.0",
"body-parser": "~1.14.1",
"compression": "~1.6.0",
"crypto": "0.0.3",
"express": "^4.12.3",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.0",
"gulp-concat": "^2.6.1",
"hashmap": "~2.0.4",
"merge": "^1.2.0",
"mongodb": "^3.0.0-rc0",
"mongoose": "^4.13.6",
"path": "^0.12.7",
"pump": "^2.0.0",
"q": "^1.4.1",
"swagger-jsdoc": "1.9.7",
"underscore": "^1.8.3",
"utf8": "^2.1.1",
"winston": "~1.0.1",
"yamljs": "~0.2.4"
},
"scripts": {
"start": "gulp && npm run quick-start",
"quick-start": "node dist/server.js --ulimit -n 999999 --max-old-space-size=1024",
"test": "mocha --harmony test/test-suite.js --timeout 200000000"
},
"eslintConfig": {
"env": {
"node": true
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"rules": {
"semi": "error",
"eqeqeq": "error",
"curly": "error",
"no-irregular-whitespace": "error",
"no-var": "error"
}
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-node6": "^11.0.0",
"babel-register": "^6.26.0",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.0",
"gulp-concat": "^2.6.1"
}
}