-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 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
53
54
{
"name": "dungeon-libs",
"version": "2.0.0",
"description": "Rules for the Dungeon Libs roleplaying game",
"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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/metamagic-games/dungeon-libs.git"
},
"keywords": [
"dungeon libs",
"rules",
"roleplaying",
"game",
"tabletop",
"d&d"
],
"author": "Max Clayton Clowes <maxcc@me.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/metamagic-games/dungeon-libs/issues"
},
"homepage": "https://github.com/metamagic-games/dungeon-libs#readme",
"jest": {
"setupFilesAfterEnv": [
"./setupTests.js"
]
},
"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": "^8.0.3",
"jest": "^26.6.3",
"lodash": "^4.17.21",
"marked": "^4.0.10",
"merge-md": "^1.0.3",
"path": "^0.12.7",
"prettier": "^2.8.3",
"pretty-quick": "^3.1.3",
"watch": "^1.0.2"
}
}