-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
31 lines (31 loc) · 899 Bytes
/
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
{
"name": "craps",
"version": "1.0.0",
"description": "craps simulator",
"main": "index.js",
"scripts": {
"test": "standard && NODE_ENV=test tap *.test.js --no-check-coverage --coverage-report=text-summary",
"cov": "standard && NODE_ENV=test tap *.test.js --no-check-coverage --coverage-report=html",
"tap-file": "standard && NODE_ENV=test tap *.test.js --no-check-coverage --output-file=results.tap",
"fix": "standard --fix"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/tphummel/node-craps.git"
},
"keywords": [
"craps",
"dice",
"gambling"
],
"author": "Tom Hummel <tohu@hey.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tphummel/node-craps/issues"
},
"homepage": "https://github.com/tphummel/node-craps#readme",
"devDependencies": {
"standard": "^16.0.3",
"tap": "^15.0.9"
}
}