-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
54 lines (54 loc) · 1.57 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
{
"description": "Web component for displaying 5th Edition monster stat blocks",
"keywords": [
"litelement",
"webcomponent"
],
"name": "vellum-monster",
"version": "1.3.2",
"author": "R.G. Wood <ric@grislyeye.com> (https://grislyeye.com)",
"contributors": [
"Val Markovic <val@markovic.io> (http://val.markovic.io)"
],
"license": "Apache-2.0",
"type": "module",
"devDependencies": {
"@open-wc/testing": "^3.0.3",
"@web/dev-server-legacy": "^0.1.7",
"@web/test-runner": "^0.13.26",
"@web/test-runner-playwright": "^0.8.8",
"bl": ">=5.0.0",
"diff": ">=5.0.0",
"es-dev-server": "^2.1.0",
"eslint": "^8.7.0",
"eslint-config-standard": "^17.0.0-0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-lit": "^1.6.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^4.1.0",
"growl": ">=1.10.5",
"rimraf": "^3.0.2",
"rollup": "^2.66.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2",
"yaml-lint": "^1.2.4"
},
"resolutions": {
"inherits": "2.0.3",
"samsam": "1.1.3",
"supports-color": "3.1.2",
"type-detect": "1.0.0",
"wd": "^1.13.0"
},
"main": "vellum-monster.js",
"dependencies": {
"lit-element": "^2.4.0"
},
"scripts": {
"start": "es-dev-server --app-index index.html --node-resolve --watch --open",
"build": "yamllint .github/workflows/node.js.yml && eslint *.js lib/*.js test/*.js && rimraf dist && rollup -c",
"test": "npm run build && wtr",
"clean": "rimraf dist"
}
}