-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
69 lines (69 loc) · 1.88 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
{
"name": "@hydrofoil/shaperone",
"private": true,
"license": "MIT",
"scripts": {
"prepare": "husky install; patch-package",
"lint": "eslint . --ext .ts --quiet --ignore-path .gitignore --ignore-path .eslintignore",
"build": "wsrun -m build",
"test": "run-p test:*",
"test:core": "c8 --all -o coverage/core --reporter=lcov mocha --recursive 'packages/core-tests/**/*.test.ts'",
"test:web": "web-test-runner",
"release": "changeset publish",
"docs": "docsify serve ./dist",
"typedoc": "typedoc --watch"
},
"workspaces": [
"packages/*",
"demos/*"
],
"devDependencies": {
"@changesets/cli": "^2.22.0",
"@open-wc/eslint-config": "^12.0.3",
"@rollup/plugin-commonjs": "^17.0.0",
"@tpluscode/eslint-config": "^0.4.5",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"@web/dev-server-esbuild": "^0.3.2",
"@web/dev-server-rollup": "^0.3.19",
"@web/test-runner": "^0.13.15",
"c8": "^7.1.2",
"chai-snapshot-matcher": "^1.0.6",
"docsify-cli": "^4.4.1",
"es-dev-commonjs-transformer": "^0.2.0",
"eslint-import-resolver-typescript": "^3.6.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"lit-analyzer": "^2.0.3",
"npm-run-all": "^4.1.5",
"patch-package": "^8.0.0",
"readable-stream": "^4.5.2",
"sinon": "^9.0.2",
"sinon-chai": "^3.5.0",
"standard": "^17.0.0",
"ts-lit-plugin": "^1.2.1",
"ts-node": "^10.9.1",
"typedoc": "^0.25.12",
"typescript": "^5.4.3",
"vite": "^5.2.6",
"web-component-analyzer": "^1.1.6",
"wsrun": "^5.2.4"
},
"resolutions": {
"@polymer/polymer": "3.4.1"
},
"mocha": {
"watch-files": [
"./**/*.ts"
],
"require": [
"test-setup.js"
],
"loader": "ts-node/esm/transpile-only"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix --quiet"
]
}
}