-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.06 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
{
"name": "vellum-sheet",
"version": "0.5.2",
"description": "Web component for displaying 5th Edition D&D character sheets",
"keywords": [
"lit",
"lit-element",
"webcomponent"
],
"author": "R.G. Wood <ric@grislyeye.com> (https://grislyeye.com)",
"contributors": [
"Val Markovic <val@markovic.io> (http://val.markovic.io)"
],
"license": "Apache 2.0",
"dependencies": {
"lit-element": "^3.2.2",
"microtesia.js": "^0.1.2"
},
"devDependencies": {
"eslint": "^8.32.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-lit": "^1.8.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^4.1.0",
"polymer-cli": "^1.9.11",
"rimraf": "^4.1.2",
"rollup": "^3.12.0",
"rollup-plugin-node-resolve": "^5.2.0"
},
"scripts": {
"build": "npm test && rollup -c",
"test": "eslint *.js lib/*.js && polymer lint",
"start": "polymer serve --open",
"clean": "rimraf dist"
}
}