-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.46 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
{
"name": "@opendnd/nomina",
"version": "0.4.4",
"description": "A tool for generating names for characters with a wide variety",
"main": "dist/nomina.js",
"bin": {
"nomina": "./bin/nomina"
},
"scripts": {
"start": "bin/nomina",
"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",
"test:watch": "yarn test -- -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/opendnd/nomina.git"
},
"author": "Drew Morris <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/opendnd/nomina/issues"
},
"homepage": "https://github.com/opendnd/nomina#readme",
"dependencies": {
"@opendnd/core": "^0.2.7",
"commander": "^2.12.2"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.1",
"chai": "^3.5.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"
},
"keywords": [
"name",
"generator",
"opendnd",
"dnd",
"d&d"
],
"directories": {
"test": "test"
}
}