forked from ECLK/Nomination
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.82 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
{
"name": "Gov-Nomination-API",
"version": "1.0.0",
"description": "Exposing Restfull end points for Gov Nomination API",
"main": "index.js",
"private": false,
"engines": {
"node": ">=5",
"npm": ">=3"
},
"scripts": {
"start": "NODE_ENV=development nodemon --exec 'babel-node ./src/index.js' | bunyan",
"test:cmd": "./node_modules/.bin/_mocha --compilers js:babel-core/register --timeout 100000 --harmony --require babel-polyfill",
"test": "npm run test:cmd './src/test/**/*.@(js)' -w",
"test:custom": "npm run test:cmd -- -w",
"test:integration": "npm run test:cmd './src/test/integration-test/**/*.@(js)' -w",
"cover:cmd": "istanbul cover ./node_modules/.bin/_mocha -- --timeout 10000 --harmony --require babel-register --require ./src/test/test_helper.js -R spec -c",
"cover:integration": "npm run cover:cmd './src/test/integration-test/**/*.@(js)' && npm run open:cover",
"cover:all": "npm run cover:cmd './src/**/**/test/*.@(js)' && npm run open:cover",
"open:cover": "xdg-open ./coverage/lcov-report/index.html"
},
"repository": {
"type": "git",
"url": ""
},
"keywords": [
"nodemon",
"express",
"babel",
"es6",
"es7"
],
"author": "",
"license": "",
"homepage": "",
"dependencies": {
"body-parser": "^1.15.2",
"continuation-local-storage": "^3.2.0",
"cookie-parser": "^1.4.3",
"cors": "^2.7.1",
"dotenv": "^2.0.0",
"express": "^4.14.0",
"flow-runtime": "^0.2.1",
"fraction.js": "^3.3.1",
"globule": "^1.1.0",
"is_js": "^0.8.0",
"joi": "^9.2.0",
"join-js": "^1.0.1",
"js-yaml": "^3.7.0",
"json-refs": "^2.1.6",
"lodash": "^4.14.1",
"log4js": "~0.6.15",
"mysql": "^2.12.0",
"path": "^0.12.7",
"query-string": "^4.2.2",
"sequelize": "^3.29.0",
"swaggerize-ui": "^1.0.1",
"typed-immutable": "^0.1.0",
"util": "^0.10.3",
"uuid": "^3.3.2"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.11.4",
"babel-eslint": "^6.1.2",
"babel-plugin-flow-runtime": "^0.2.1",
"babel-plugin-module-alias": "^1.6.0",
"babel-plugin-typecheck": "^3.6.1",
"babel-preset-es2015": "^6.18.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-0": "^6.16.0",
"babel-preset-stage-1": "^6.16.0",
"bunyan": "^1.8.1",
"eslint": "^3.2.2",
"eslint-config-airbnb-base": "^5.0.1",
"eslint-plugin-import": "^1.12.0",
"flow-bin": "^0.38.0",
"nodemon": "^1.10.0",
"chai": "^3.5.0",
"chai-http": "^2.0.1",
"chai-immutable": "^1.6.0",
"chai-string": "^1.3.0",
"chai-subset": "^1.3.0",
"mocha": "^4.0.1",
"sinon": "^1.17.4 ",
"sinon-chai": "^2.8.0",
"istanbul": "1.0.0-alpha.2",
"jsdom": "^9.8.3"
},
"optionalDependencies": {
"fsevents": "1.0.15"
}
}