-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.25 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
{
"name": "dungeon-world-character",
"description": "Dungeon world character sheet.",
"version": "1.0.0",
"main": "src/index.js",
"devDependencies": {
"@esm-bundle/chai": "^4.3.4-fix.0",
"@open-wc/testing": "^3.1.6",
"@web/dev-server-esbuild": "^0.3.1",
"@web/test-runner": "^0.13.31",
"black-magic": "github:cogwizzle/black-magic",
"esbuild": "^0.14.42",
"eslint": "^8.35.0",
"jsdoc": "^4.0.2",
"sinon": "^14.0.0",
"spell-file": "github:cogwizzle/spell-file",
"tailwindcss": "^3.0.24",
"workbox-build": "^6.5.3",
"workbox-cli": "^6.5.3"
},
"scripts": {
"build": "node ./scripts/build.js",
"start": "node ./scripts/dev.js",
"test": "wtr \"test/**/*.test.js\" --node-resolve --esbuild-target auto",
"service-worker": "workbox generateSW",
"black-magic": "black-magic",
"surge": "bash ./scripts/publish.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cogwizzle/dungeon-world-character.git"
},
"author": "Cogwizzle",
"license": "ISC",
"bugs": {
"url": "https://github.com/cogwizzle/dungeon-world-character/issues"
},
"homepage": "https://github.com/cogwizzle/dungeon-world-character#readme",
"dependencies": {
"change-case": "^4.1.2"
}
}