-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.65 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
{
"name": "tiyl",
"version": "1.3.2",
"description": "Generate character backstories based on the Xanathar's Guide to Everything 'This Is Your Life' tables.",
"main": "./dist/index.js",
"scripts": {
"build": "npm run clean && npm run lint && npm run tsc",
"clean": "node ./node_modules/rimraf/bin ./dist && node ./node_modules/rimraf/bin ./coverage",
"codacy": "cat ./coverage/lcov/lcov.info | codacy-coverage --verbose",
"lint": "tslint -p ./tslint.json",
"lint:fix": "tslint -p ./tslint.json --fix",
"tsc": "tsc --project ./tsconfig.build.json",
"test": "npm run lint && karma start --single-run",
"test:watch": "karma start",
"dist": "npm run build && copy package.json dist && copy README.md dist && copy LICENSE dist && cd dist && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trwolfe13/tiyl.git"
},
"keywords": [
"xanathar's",
"guide",
"to",
"everything",
"dungeons",
"dragons",
"D&D",
"5e",
"XGE",
"XGtE"
],
"author": "Tom Wolfe <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/trwolfe13/tiyl/issues"
},
"homepage": "https://github.com/trwolfe13/tiyl#readme",
"devDependencies": {
"@types/jasmine": "^3.5.9",
"codacy-coverage": "^3.4.0",
"istanbul": "^0.4.5",
"jasmine-core": "^3.5.0",
"karma": "^4.4.1",
"karma-chrome-launcher": "^3.1.0",
"karma-jasmine": "^3.1.1",
"karma-typescript": "^5.0.0",
"rimraf": "^3.0.2",
"tslint": "^6.1.0",
"typescript": "^3.8.3"
},
"dependencies": {
"markov-typescript": "^1.1.0",
"random-js": "^2.1.0"
}
}