-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·65 lines (65 loc) · 2.06 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
{
"name": "ttrpg-tools",
"version": "1.2.1",
"description": "API for generating random dice rolls, NPCs, towns, names, etc. for TTRPG campaigns.",
"author": "Joseph H. Stoops",
"main": "src/index.js",
"type": "module",
"scripts": {
"build": "webpack --mode=production",
"postbuild": "cp README.md dist/README.md && cp LICENSE dist/LICENSE && cp package.json dist/package.json && cp package-lock.json dist/package-lock.json",
"lint": "eslint ./",
"lint:fix": "eslint ./ --fix",
"publish": "HUSKY=0 npm publish ./dist",
"publish:patch": "npm version patch && npm run build && git push && git push --tags && npm run publish",
"publish:minor": "npm version minor && npm run build && git push && git push --tags && npm run publish",
"prestart": "npm run build",
"start": "node --experimental-specifier-resolution=node test-code.js",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --watch",
"test:coverage": "NODE_OPTIONS=--experimental-vm-modules jest --coverage",
"prepare": "husky install"
},
"devDependencies": {
"@babel/cli": "^7.23.9",
"@babel/core": "^7.23.9",
"@babel/eslint-parser": "^7.23.9",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/preset-env": "^7.23.9",
"babel-loader": "^9.1.3",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.6.3",
"husky": "^8.0.0",
"jest": "^29.7.0",
"webpack": "^5.90.0",
"webpack-cli": "^5.1.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JHStoops/ttrpg-tools.git"
},
"keywords": [
"dnd",
"dnd5e",
"dnd tools",
"dice",
"die",
"generator",
"npc",
"procedural generation",
"random",
"randomizer",
"roll",
"rpg",
"rpg tools",
"towns",
"ttrpg"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/JHStoops/ttrpg-tools/issues"
},
"homepage": "https://github.com/JHStoops/ttrpg-tools#readme"
}