-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.18 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
{
"name": "rag",
"version": "1.0.0",
"description": "A Random Army Generator in Typescript",
"main": "src/index.ts",
"scripts": {
"test": "jest",
"lint": "tslint -p . -c tslint.json src/**/*.ts",
"lint:fix": "tslint -p . -c tslint.json src/**/*.ts --fix",
"build": "npm run build:src && npm run build:diagrams && npm run build:tsdoc",
"build:src": "tsc",
"build:diagrams": "puml generate --png --output=docs/classes.png docs/classes.puml",
"build:tsdoc": "typedoc --out docs/tsdoc/"
},
"husky": {
"hooks": {
"pre-push": "echo 'Running Lint' && npm run lint"
}
},
"devDependencies": {
"@types/jest": "^24.0.13",
"@types/node": "^12.0.8",
"husky": "^3.0.0",
"jest": "^24.8.0",
"jest-html-reporters": "^1.1.5",
"jsdoc": "^3.6.2",
"node-plantuml": "^0.8.1",
"standard": "^12.0.1",
"ts-jest": "^24.0.2",
"tslint": "^5.17.0",
"tslint-config-standard": "^8.0.1",
"typedoc": "^0.14.2",
"typescript": "^3.4.5"
},
"repository": {
"type": "git",
"url": "https://github.com/WebDaD/RandomArmyGenerator"
},
"author": "Dominik Sigmund <dominik.sigmund@webdad.eu>",
"license": "Unlicense"
}