-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
65 lines (65 loc) · 1.8 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
{
"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 npm run -w @hydrofoil/shaperone-core-tests test",
"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.5.0",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"@web/test-runner-puppeteer": "^0.17.0",
"@web/dev-server-esbuild": "^0.4.4",
"@web/dev-server-rollup": "^0.6.4",
"@web/test-runner": "^0.19",
"c8": "^7.1.2",
"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.10",
"lit-analyzer": "^2.0.3",
"npm-run-all": "^4.1.5",
"patch-package": "^8.0.0",
"readable-stream": "^4.5.2",
"sinon": "^19.0.2",
"sinon-chai": "^3.7.0",
"standard": "^17.0.0",
"ts-lit-plugin": "^2.0.2",
"ts-node": "^10.9.1",
"typedoc": "^0.27.3",
"typescript": "^5.7.2",
"vite": "^5.4.11",
"web-component-analyzer": "^1.1.6",
"wsrun": "^5.2.4"
},
"resolutions": {
"@polymer/polymer": "3.4.1"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix --quiet"
]
},
"overrides": {
"ts-sinon": {
"sinon": "19.0.2"
}
}
}