forked from legumeinfo/web-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.28 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
63
64
65
66
{
"name": "legumeinfo/web-components",
"private": true,
"version": "0.0.1",
"description": "Web components for the Legume Information System and other AgBio databases",
"main": "dist/index.js",
"module": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"clean": "rimraf dist/**/*.{d.ts,d.ts.map,js,js.map} test/**/*.{d.ts,d.ts.map,js,js.map} test/**/*.{d.ts,d.ts.map,js,js.map}",
"lint": "npm run lint:lit-analyzer && npm run lint:eslint",
"lint:eslint": "eslint 'src/**/*.ts'",
"lint:lit-analyzer": "lit-analyzer",
"format": "prettier \"**/*.{cjs,html,js,json,md,ts}\" --ignore-path ./.eslintignore --write",
"docs": "npm run docs:clean && npm run docs:gen",
"docs:clean": "rimraf docs",
"docs:gen": "npx typedoc --options typedoc.json",
"docs:serve": "wds --root-dir=docs --node-resolve --watch",
"serve": "wds --watch",
"serve:prod": "MODE=prod npm run serve",
"test": "npm run test:dev && npm run test:prod",
"test:dev": "wtr",
"test:watch": "wtr --watch",
"test:prod": "MODE=prod wtr",
"test:prod:watch": "MODE=prod wtr --watch",
"checksize": "rollup -c ; cat web-components.bundled.js | gzip -9 | wc -c ; rm web-components.bundled.js",
"package": "rollup -c rollup.config.js",
"package:watch": "rollup -c -w"
},
"keywords": [
"lit",
"web-components",
"typescript",
"legumes"
],
"author": "Legume Information System",
"license": "Apache-2.0",
"customElements": "custom-elements.json",
"devDependencies": {
"@open-wc/testing": "^3.2.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-terser": "^0.4.3",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"@web/dev-server": "^0.3.0",
"@web/dev-server-legacy": "^2.0.1",
"@web/test-runner": "^0.17.0",
"@web/test-runner-playwright": "^0.10.1",
"@webcomponents/webcomponentsjs": "^2.8.0",
"eslint": "^8.45.0",
"lit-analyzer": "^1.2.1",
"prettier": "^3.0.0",
"rimraf": "^5.0.1",
"rollup": "^3.26.3",
"rollup-plugin-summary": "^2.0.0",
"typedoc": "^0.24.8",
"typescript": "^5.1.6",
"uikit": "^3.16.22"
},
"dependencies": {
"lit": "^2.7.6"
}
}