-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
53 lines (53 loc) · 1.34 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
53
{
"name": "dynastia",
"version": "0.4.8",
"description": "This is a tool for D&D DM's to generate dynasties quickly when making a kingdom's history.",
"main": "lib/dynastia.js",
"scripts": {
"start": "bin/dynastia",
"test": "npm run test:mocha && npm run test:lint",
"test:mocha": "mocha --reporter spec 'test/**/*.js'",
"test:lint": "eslint ."
},
"author": "Drew Morris <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/opendnd/dynastia",
"bugs": {
"url": "https://github.com/opendnd/dynastia/issues"
},
"bin": {
"dynastia": "./bin/dynastia"
},
"keywords": [
"dungeons",
"dragons",
"dynasty",
"generator"
],
"dependencies": {
"body-parser": "^1.15.2",
"colors": "^1.1.2",
"commander": "^2.14.1",
"express": "^4.14.0",
"genetica": "^0.3.10",
"handlebars": "^4.7.3",
"js-md5": "^0.4.2",
"mustache": "^2.3.0",
"node-zip": "^1.1.1",
"nomina": "^0.4.3",
"personae": "^0.8.4",
"prettyjson": "^1.2.1",
"questions": "0.0.6",
"random-weighted": "^1.0.0",
"roll": "^1.2.0",
"roman-numerals": "^0.3.2",
"terminal-kit": "^1.33.15"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^11.1.0",
"eslint-plugin-import": "^2.2.0",
"mocha": "^5.2.0"
}
}