-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
37 lines (37 loc) · 941 Bytes
/
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
{
"name": "workspace",
"author": "Zazuko GmbH",
"type": "module",
"license": "AGPL",
"private": true,
"scripts": {
"prepare": "husky",
"lint": "eslint --quiet . --ignore-path .eslintignore --ignore-path .gitignore",
"analyze": "lit-analyzer --strict --quiet",
"release": "changeset publish && changeset tag",
"test": "mocha --recursive packages/*/test/*.test.js"
},
"devDependencies": {
"@changesets/cli": "^2.27.8",
"@open-wc/eslint-config": "^12.0.3",
"@tpluscode/eslint-config": "^0.5.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.10",
"lit-analyzer": "^2.0.0-pre.2",
"mocha": "^10.7.3"
},
"workspaces": [
"packages/*"
],
"lint-staged": {
"*.js": [
"eslint --quiet --fix",
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "https://github.com/zazuko/shacl-playground.git"
}
}