-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 840 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 840 Bytes
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
{
"name": "monopoly",
"version": "1.0.0",
"description": "A Monopoly game in JavaScript",
"main": "index.js",
"scripts": {
"test": "make test",
"webpack": "webpack --watch",
"test-coverage": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- --ui bdd -R spec -t 5000 \n open coverage/lcov-report/index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andrewjmeier/Monopoly.git"
},
"author": "Andrew Meier <booyankees13@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/andrewjmeier/Monopoly/issues"
},
"homepage": "https://github.com/andrewjmeier/Monopoly#readme",
"devDependencies": {
"chai": "^3.4.1",
"istanbul": "^0.4.0",
"mocha": "^2.3.3"
},
"dependencies": {
"tabletop-boardgames": "1.0.5"
}
}