-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.54 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
52
{
"name": "bracery",
"version": "1.1.2",
"description": "Procedural text generator, somewhat compatible with Tracery",
"main": "index.js",
"bin": {
"bracery": "bin/bracery"
},
"scripts": {
"test": "node ./node_modules/nyc/bin/nyc --exclude src/rhs.js --reporter=html --reporter=text node ./node_modules/mocha/bin/mocha test/*.js",
"coverage": "node ./node_modules/nyc/bin/nyc report --reporter=text-lcov | node ./node_modules/coveralls/bin/coveralls",
"postinstall": "make postinstall",
"prepublishOnly": "make; git clean -fd; rm lambda/Makefile.keys || true"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ihh/bracery.git"
},
"author": "Ian Holmes <[email protected]>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/ihh/bracery/issues"
},
"homepage": "https://github.com/ihh/bracery#readme",
"dependencies": {
"ajv": "^6.10.0",
"bluebird": "^3.5.1",
"canonicaljson": "^1.0.1",
"colors": "^1.2.5",
"compromise": "^11.13.1",
"cryptiles": "^4.1.3",
"jsonschema": "~1.2.4",
"keypress": "~0.2.1",
"mersenne-twister": "^1.1.0",
"node-getopt": "^0.3.2",
"oauth": "^0.9.15",
"request": "^2.85.0",
"request-promise": "^4.2.2",
"rita": "^1.3.89",
"tmp": "0.0.33"
},
"devDependencies": {
"browserify": "^16.2.3",
"coveralls": "^3.0.1",
"marked": "^0.6.1",
"mocha": "^5.1.1",
"nyc": "^11.8.0",
"pegjs": "^0.10.0",
"uglify-js": "^3.3.24",
"babel-preset-react-app": "8.0.0-next.b0cbf2ca"
}
}