-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 2.17 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
67
68
69
70
71
72
73
74
75
76
{
"name": "rdfjs-elements",
"version": "0.0.0",
"description": "RDF/JS Web Components",
"main": "index.js",
"type": "module",
"author": "Zazuko GmbH",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"analyze": "wsrun -pmc analyze",
"test": "run-s test:*",
"test:components": "wtr",
"test:formats": "c8 -o coverage/formats mocha packages/formats",
"lint:eslint": "eslint --quiet --ext .js,.html . --ignore-path .eslintignore",
"format:eslint": "eslint --quiet --ext .js,.html . --fix --ignore-path .eslintignore",
"lint:prettier": "prettier \"**/*.js\" --check --ignore-path .eslintignore",
"format:prettier": "prettier \"**/*.js\" --write --ignore-path .eslintignore",
"lint": "npm run lint:eslint && npm run lint:prettier",
"format": "npm run format:eslint && npm run format:prettier",
"release": "changeset publish",
"prepare": "husky install; patch-package"
},
"devDependencies": {
"@changesets/cli": "^2.24.0",
"@custom-elements-manifest/analyzer": "^0.6.3",
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
"@open-wc/eslint-config": "^7.0.0",
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-commonjs": "^19.0.2",
"@web/dev-server-esbuild": "^0.4.4",
"@web/dev-server-rollup": "^0.6.4",
"@web/test-runner": "^0.18.3",
"c8": "^7.7.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^7.2.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"lit-analyzer": "^2.0.0-pre.2",
"npm-run-all": "^4.1.5",
"patch-package": "^7.0.0",
"postinstall-postinstall": "^2.1.0",
"prettier": "^2.0.4",
"rdfjs-eds-plugin": "^0.1.1",
"rollup-plugin-node-polyfills": "^0.2.1",
"vite": "^5.4.8",
"vite-plugin-static-copy": "^1.0.2",
"wsrun": "^5.2.4"
},
"eslintConfig": {
"extends": [
"@open-wc/eslint-config",
"eslint-config-prettier"
]
},
"prettier": {
"singleQuote": true,
"arrowParens": "avoid",
"semi": false
},
"lint-staged": {
"*.js": [
"eslint --quiet --fix",
"prettier --write"
]
},
"mocha": {
"recursive": true
},
"c8": {
"reporter": "lcov"
}
}