-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 904 Bytes
/
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
{
"name": "rpgdicejs",
"version": "2.0.2",
"description": "A generic RPG dice roller syntax and library.",
"main": "index.js",
"types": "types/index.d.ts",
"scripts": {
"peg": "pegjs --format commonjs -o lib/parser.js grammar/dice.pegjs",
"lint:fix": "eslint --fix index.js lib/ tests/",
"test": "mocha ./tests/**/*.spec.js --reporter spec --recursive"
},
"keywords": [
"dice",
"rpg",
"roller"
],
"author": "Christopher S. Case <chris.case@g33xnexus.com>",
"license": "MIT",
"engineStrict": true,
"engines": {
"node": ">= 10.0.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-spies": "^1.0.0",
"eslint": "^8.10.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.4",
"mocha": "^9.2.1",
"pegjs": "^0.10.0"
},
"lint-staged": {
"*.{ts,js}": "npm run lint:fix"
},
"dependencies": {
"proxyquire": "^2.1.3"
}
}