This repository has no description
1{
2 "name": "dendry",
3 "version": "0.0.1",
4 "description": "Tools to create and build interactive fiction.",
5 "keywords": [
6 "interactive fiction"
7 ],
8 "author": "Ian Millington <idmillington@gmail.com>",
9 "homepage": "https://github.com/dendry/dendry",
10 "repository": {
11 "type": "git",
12 "url": "git://github.com/dendry/dendry.git"
13 },
14 "bugs": "https://github.com/dendry/dendry/issues",
15 "license": "MIT",
16 "main": "lib/dendry.js",
17 "dependencies": {
18 "argparse": "1.0.x",
19 "prompt": "0.2.x",
20 "handlebars": "3.0.x",
21 "colors": "1.1.x",
22 "async": "1.x.x",
23 "lodash": "3.10.x",
24 "dive": "0.4.x",
25 "browserify": "10.x.x",
26 "uglify-js": "2.4.x",
27 "mkdirp": "0.5.x",
28 "wordwrap": "1.0.x"
29 },
30 "devDependencies": {
31 "mocha": "2.2.x",
32 "should": "6.0.x",
33 "jshint": "2.9.x",
34 "jscs": "1.13.x",
35 "mocha-jshint": "2.2.x",
36 "istanbul": "0.3.x",
37 "coveralls": "2.11.x",
38 "marked": "0.3.x"
39 },
40 "engines": {
41 "node": ">= 0.10"
42 },
43 "scripts": {
44 "test": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha",
45 "test-on-travis": "./node_modules/.bin/istanbul cover --report lcovonly ./node_modules/.bin/_mocha",
46 "upload-to-coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
47 },
48 "bin": {
49 "dendry": "lib/cli/main.js"
50 }
51}