-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.67 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
54
55
56
57
58
59
60
61
62
{
"name": "@opendnd/genetica",
"version": "0.6.1",
"description": "This is a tool for using a simplified genetics system to generate inheritable traits for DnD characters.",
"main": "dist/genetica.js",
"scripts": {
"start": "bin/genetica",
"prebuild": "rimraf dist",
"build": "tsc --declaration",
"prepublish": "npm run build",
"lint": "tslint src/**/*.ts",
"env:dev": "cross-env NODE_ENV=development",
"env:prod": "cross-env NODE_ENV=production",
"test": "mocha -c -S -R spec --compilers ts:ts-node/register --check-leaks",
"test:watch": "yarn test -- -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/opendnd/genetica.git"
},
"keywords": [
"genetics",
"dungeons",
"dragons",
"DnD"
],
"author": "Drew Morris <[email protected]> (http://github.com/drewry)",
"license": "MIT",
"bugs": {
"url": "https://github.com/opendnd/genetica/issues"
},
"homepage": "https://github.com/opendnd/genetica#readme",
"bin": {
"genetica": "./bin/genetica"
},
"dependencies": {
"@opendnd/core": "^0.2.4",
"colors": "^1.3.0",
"commander": "^2.16.0",
"node-zip": "^1.1.1",
"questions": "0.0.6",
"roll": "^1.2.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.1",
"chai": "^4.1.2",
"cross-env": "^5.2.0",
"eslint": "^5.0.1",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-import": "^2.13.0",
"mocha": "^5.2.0",
"node-xlsx": "^0.11.2",
"rimraf": "^2.6.2",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.1.4",
"yarn": "^1.10.1"
}
}