forked from dendry/dendry
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
51 lines (51 loc) · 1.32 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "dendry",
"version": "0.0.1",
"description": "Tools to create and build interactive fiction.",
"keywords": [
"interactive fiction"
],
"author": "Ian Millington <idmillington@gmail.com>",
"homepage": "https://github.com/dendry/dendry",
"repository": {
"type": "git",
"url": "git://github.com/dendry/dendry.git"
},
"bugs": "https://github.com/dendry/dendry/issues",
"license": "MIT",
"main": "lib/dendry.js",
"dependencies": {
"argparse": "1.0.x",
"prompt": "0.2.x",
"handlebars": "3.0.x",
"colors": "1.1.x",
"async": "1.x.x",
"lodash": "3.10.x",
"dive": "0.4.x",
"browserify": "10.x.x",
"uglify-js": "2.4.x",
"mkdirp": "0.5.x",
"wordwrap": "1.0.x"
},
"devDependencies": {
"mocha": "2.2.x",
"should": "6.0.x",
"jshint": "2.9.x",
"jscs": "1.13.x",
"mocha-jshint": "2.2.x",
"istanbul": "0.3.x",
"coveralls": "2.11.x",
"marked": "0.3.x"
},
"engines": {
"node": ">= 0.10"
},
"scripts": {
"test": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha",
"test-on-travis": "./node_modules/.bin/istanbul cover --report lcovonly ./node_modules/.bin/_mocha",
"upload-to-coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"bin": {
"dendry": "lib/cli/main.js"
}
}