-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.36 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": "@airjp73/dice-notation",
"version": "2.2.2",
"description": "A js library for parsing dice notation",
"module": "dist/module/index.js",
"main": "dist/main/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"build:module": "tsc --module ESNext --outDir dist/module",
"build:main": "tsc --module CommonJS --outDir dist/main",
"build": "npm run build:module && npm run build:main",
"prepublish": "npm run build",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"files": [
"dist/**/*",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/airjp73/dice-notation.git"
},
"author": "Aaron Pettengill",
"license": "MIT",
"bugs": {
"url": "https://github.com/airjp73/dice-notation/issues"
},
"homepage": "https://github.com/airjp73/dice-notation#readme",
"devDependencies": {
"@types/jest": "^24.9.0",
"@types/moo": "^0.5.1",
"husky": "4.3.8",
"jest": "^26.6.3",
"lint-staged": "10.5.4",
"prettier": "2.2.1",
"ts-jest": "^26.5.5",
"typescript": "^4.2.4"
},
"dependencies": {
"moo": "^0.5.1"
},
"lint-staged": {
"**/*.{ts,json,js}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}