-
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) · 1002 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 1002 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
35
36
37
38
39
40
41
{
"name": "tbq",
"version": "0.2.0",
"description": "Text Based Quest games engine for node",
"main": "lib/index.js",
"scripts": {
"test": "node_modules/.bin/tape -r babel-core/register tests/*.js",
"compile": "babel -d lib/ src/",
"prepublish": "npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vandamm/TBQ.git"
},
"keywords": [
"text",
"based",
"adventure",
"quest"
],
"author": "Alex Vansach <evilgreedystalker@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vandamm/TBQ/issues"
},
"homepage": "https://github.com/vandamm/TBQ#readme",
"dependencies": {
"json-path-processor": "^0.2.3",
"lodash": "^4.1.0"
},
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-core": "^6.4.5",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"faucet": "0.0.1",
"tap-bail": "0.0.0",
"tap-spec": "^5.0.0",
"tape": "^4.4.0"
}
}