-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.63 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
{
"name": "deathmatch-warriors-services",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "mocha --compilers js:babel-register --require babel-polyfill **/*.spec.js",
"coverage": "nyc _mocha --compilers js:babel-register **/*.spec.js",
"start": "babel-node app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/markedwardsims/deathmatch-warriors-services.git"
},
"author": "Mark Edward Sims",
"license": "ISC",
"bugs": {
"url": "https://github.com/markedwardsims/deathmatch-warriors-services/issues"
},
"homepage": "https://github.com/markedwardsims/deathmatch-warriors-services#readme",
"dependencies": {
"babel": "^6.5.2",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"babel-register": "^6.18.0",
"bluebird": "^3.4.6",
"mysql": "^2.12.0",
"nconf": "^0.8.4",
"node-uuid": "^1.4.7",
"require-directory": "^2.1.1",
"restify": "^4.2.0",
"sequelize": "^3.24.7",
"winston": "^2.2.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-plugin-rewire": "^1.0.0",
"babel-template": "^6.16.0",
"babel-types": "^6.18.0",
"chai": "^3.5.0",
"istanbul": "^0.4.5",
"mocha": "^3.1.2",
"nyc": "^8.4.0",
"sinon": "^1.17.6"
},
"nyc": {
"include": [
"**/*.js"
],
"exclude": [
"node_modules/",
"**/*.spec.js"
],
"extension": [
".js"
],
"require": [
"babel-polyfill"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true
}
}