-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.71 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
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@evilmonkeyinc/die-roller",
"version": "0.3.0",
"description": "A library that will allow you to take a common die shorthand, such as 2d20+5, and calculate the result",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "npm run build",
"build": "tsc",
"test": "jest",
"lint": "eslint -c .eslintrc --ext .ts src",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run lint && git add -A src",
"postversion": "git push && git push --tags",
"semantic-release": "semantic-release"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"js"
],
"testRegex": "^.+\\.spec\\.ts$"
},
"files": [
"/dist"
],
"keywords": [],
"author": "Scott McGowan (evilmonkeyinc@gmail.com)",
"license": "MIT",
"dependencies": {
"mathjs": "^10.1.0"
},
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"eslint": "^8.0.1",
"husky": "^7.0.4",
"jest": "^27.3.1",
"semantic-release": "^19.0.2",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
},
"directories": {
"dist": "dist"
},
"repository": {
"type": "git",
"url": "https://github.com/evilmonkeyinc/die-roller.git"
},
"bugs": {
"url": "https://github.com/evilmonkeyinc/die-roller/issues"
},
"homepage": "https://github.com/evilmonkeyinc/die-roller#readme",
"publishConfig": {
"access": "public"
},
"release": {
"branches": [
"main"
]
}
}