-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.77 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
63
64
65
66
{
"name": "@opendnd/personae",
"version": "0.10.8",
"description": "This tool is used to generate a person either NPC or other Edit",
"main": "dist/personae.js",
"scripts": {
"start": "bin/personae",
"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/personae.git"
},
"keywords": [
"person",
"NPC",
"DnD"
],
"author": "Drew Morris <dhmorris@gmail.com> (http://github.com/drewry)",
"license": "MIT",
"bugs": {
"url": "https://github.com/opendnd/personae/issues"
},
"homepage": "https://github.com/opendnd/personae#readme",
"bin": {
"personae": "./bin/personae"
},
"dependencies": {
"@opendnd/avataria": "^0.5.0",
"@opendnd/core": "^0.2.6",
"@opendnd/genetica": "^0.6.0",
"colors": "^1.1.2",
"commander": "^2.13.0",
"node-zip": "^1.1.1",
"nomina": "^0.4.3",
"pdfkit": "^0.8.3",
"questions": "0.0.6",
"random-weighted": "^1.0.0",
"roll": "^1.2.0",
"svg-to-pdfkit": "^0.1.7",
"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": "^4.19.1",
"eslint-config-airbnb-base": "^11.1.0",
"eslint-plugin-import": "^2.12.0",
"mocha": "^5.2.0",
"rimraf": "^2.6.2",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.1.4",
"yarn": "^1.10.1"
}
}