-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
62 lines (62 loc) · 1.48 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
{
"name": "handbooker",
"version": "1.6.6",
"description": "Turn markdown into a players handbook",
"main": "lib/index.js",
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/metamagic-games/handbooker.git"
},
"keywords": [
"players",
"handbook",
"d&d",
"dnd",
"tabletop",
"gaming",
"markdown",
"pdf",
"homebrewery"
],
"files": [
"lib"
],
"author": "Max Clayton Clowes <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/metamagic-games/handbooker/issues"
},
"homepage": "https://github.com/metamagic-games/handbooker#readme",
"scripts": {
"build": "./node_modules/.bin/babel src --out-dir lib --ignore '**/*.spec.js' && copyfiles --up 1 src/styles/* lib",
"format": "prettier --write src/",
"format:staged": "pretty-quick --staged --pattern ./src/**",
"test": "jest",
"test:watch": "jest --watch --runInBand --bail"
},
"husky": {
"hooks": {
"pre-commit": "npm run format:staged && npm run build"
}
},
"dependencies": {
"fs": "0.0.1-security",
"html-pdf-chrome": "^0.7.1",
"lodash": "^4.17.20",
"marked": "^2.0.0"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"babel-jest": "^26.6.1",
"copyfiles": "^2.4.0",
"husky": "^7.0.0",
"jest": "^26.6.1",
"prettier": "^2.1.2",
"pretty-quick": "^3.1.0"
}
}