-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.15 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.15 KB
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": "tabletop-boardgames",
"version": "1.0.21",
"description": "A simple framework for making board games",
"main": "./tabletop/tabletop.js",
"directories": {
"test": "test"
},
"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",
"docs": "jsdoc -c conf.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andrewjmeier/TableTop.JS.git"
},
"author": "Andrew Meier <booyankees13@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/andrewjmeier/TableTop.JS/issues"
},
"homepage": "https://github.com/andrewjmeier/TableTop.JS#readme",
"devDependencies": {
"chai": "^3.3.0",
"css-loader": "^0.23.1",
"eslint": "^1.5.1",
"eslint-plugin-react": "^3.5.0",
"istanbul": "^0.3.22",
"mocha": "^2.3.3",
"style-loader": "^0.13.0"
},
"dependencies": {
"express": "^4.13.4",
"jquery": "^2.2.0",
"lodash": "^4.1.0",
"machina": "^1.1.2",
"socket.io": "^1.4.5"
}
}