-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
55 lines (55 loc) · 1.61 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
{
"name": "dice-typescript",
"version": "1.6.1",
"description": "A TypeScript library for parsing dice rolling expressions, most commonly used in tabletop RPGs.",
"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",
"coverage": "istanbul 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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trwolfe13/dice-typescript.git"
},
"keywords": [
"dice",
"dice-roller",
"dice-notation",
"rpg",
"rpg-dice-roller",
"parser",
"generator",
"random",
"typescript"
],
"author": "Tom Wolfe <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/trwolfe13/dice-typescript/issues"
},
"homepage": "https://github.com/trwolfe13/dice-typescript#readme",
"devDependencies": {
"@types/jasmine": "^2.8.9",
"@types/random-js": "^1.0.31",
"codacy-coverage": "^3.1.0",
"istanbul": "^0.4.5",
"jasmine-core": "3.2.1",
"karma": "^3.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^1.1.2",
"karma-typescript": "^3.0.13",
"rimraf": "^2.6.1",
"tslint": "^5.11.0",
"typescript": "^3.1.1"
},
"dependencies": {
"random-js": "^1.0.8"
}
}