-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.06 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
{
"name": "jeah-game",
"version": "1.0.0",
"description": "game",
"main": "index.js",
"scripts": {
"start": "node src/server.js",
"dev": "nodemon src/server.js",
"test": "NODE_ENV=test nyc tape ./test/*test.js | tap-spec",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fac-14/JEAH-game.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/fac-14/JEAH-game/issues"
},
"homepage": "https://github.com/fac-14/JEAH-game#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"cookie": "^0.3.1",
"env2": "^2.2.2",
"pg": "^7.4.3"
},
"devDependencies": {
"eslint": "^5.3.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"nodemon": "^1.18.3",
"nyc": "^12.0.2",
"supertest": "^3.1.0",
"tap-spec": "^5.0.0",
"tape": "^4.9.1"
}
}