generated from metamagic-games/handbooker-sample-project
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.37 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
{
"name": "dnd-homebrews",
"version": "1.1.1",
"description": "D&D 5e homebrew content by @mcclowes",
"main": "index.js",
"scripts": {
"build": "babel-node scripts/createRulebooks",
"watch": "watch 'npm run build' ./src --wait=1",
"format": "prettier --write scripts/ src/",
"format:staged": "pretty-quick --staged --pattern ./scripts/**",
"test": "jest",
"test:watch": "jest --watch --runInBand --bail"
},
"husky": {
"hooks": {
"pre-commit": "npm run format:staged && echo Did you remember to build the CV?"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/metamagic-games/dnd-homebrews.git"
},
"keywords": [
"dnd",
"homebrew",
"rules",
"game"
],
"author": "Max Clayton Clowes <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/metamagic-games/dnd-homebrews/issues"
},
"homepage": "https://github.com/metamagic-games/dnd-homebrews#readme",
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/node": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"handbooker": "^1.6.6",
"husky": "^5.1.3",
"jest": "^26.6.3",
"lodash": "^4.17.21",
"marked": "^2.0.1",
"merge-md": "^1.0.3",
"path": "^0.12.7",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"watch": "^1.0.2"
}
}