-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 744 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 744 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
30
31
32
33
34
{
"name": "timeline",
"version": "0.0.1",
"main": "timeline.js",
"scripts": {
"test": "tape tests/*.test.js",
"watch": "nodemon --exec 'npm test'"
},
"devDependencies": {
"revise": "github:akbr/revise",
"nodemon": "^1.9.2",
"tape": "^4.6.0"
},
"description": "An engine for hybrid synchronous/turn-based games.",
"directories": {
"test": "tests"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/akbr/timeline.git"
},
"keywords": [
"game",
"engine",
"turn"
],
"author": "Aaron Rieke",
"license": "MIT",
"bugs": {
"url": "https://github.com/akbr/timeline/issues"
},
"homepage": "https://github.com/akbr/timeline#readme"
}