forked from opendnd/opendnd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.2 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
{
"name": "opendnd",
"version": "0.5.3",
"description": "This is master dependency and CLI for all OpenDnD tools.",
"main": "lib/opendnd.js",
"scripts": {
"start": "bin/dnd",
"test": "npm run test:mocha && npm run test:lint",
"test:mocha": "mocha --reporter spec 'test/**/*.js'",
"test:lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/opendnd/opendnd.git"
},
"keywords": [
"dungeons",
"dragons",
"dm",
"gm",
"tools",
"cli"
],
"author": "Drew Morris <dhmorris@gmail.com> (http://github.com/drewry)",
"license": "MIT",
"bugs": {
"url": "https://github.com/opendnd/opendnd/issues"
},
"homepage": "https://github.com/opendnd/opendnd#readme",
"bin": {
"dnd": "./bin/dnd"
},
"dependencies": {
"@opendnd/genetica": "^0.6.1",
"@opendnd/nomina": "^0.4.4",
"@opendnd/personae": "^0.10.8",
"avataria": "^0.4.1",
"colors": "^1.1.2",
"commander": "^2.13.0",
"dominia": "^0.5.4",
"dynastia": "^0.4.8"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^11.1.0",
"eslint-plugin-import": "^2.2.0",
"mocha": "^5.2.0"
}
}