-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.02 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": "rock-paper-scissors-nodejs",
"version": "1.0.5",
"description": "Rock, Paper, Scissors (Node.js)",
"main": "index.js",
"scripts": {
"start": "node ./bin/www.js",
"test": "mocha test",
"coverage": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"jscpd": "jscpd . --ignore \"**/node_modules,**/coverage\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/Stayfi/rock-paper-scissors-nodejs.git"
},
"keywords": [
"node.js",
"rock",
"paper",
"scissors"
],
"author": "Stayfi B.",
"license": "MIT",
"bugs": {
"url": "https://github.com/Stayfi/rock-paper-scissors-nodejs/issues"
},
"homepage": "https://github.com/Stayfi/rock-paper-scissors-nodejs#readme",
"dependencies": {
"ejs": "^2.7.4",
"express": "^4.17.1"
},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.8",
"jscpd": "^2.0.16",
"mocha": "^6.2.2",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^14.1.1",
"supertest": "^4.0.2"
}
}