-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
28 lines (28 loc) · 1.11 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
{
"name": "thingweb.playground",
"description": "W3C Web of Things (WoT) Thing Description tooling (root project, not published)",
"private": true,
"author": "Eclipse Thingweb <[email protected]> (https://thingweb.io/)",
"license": "EPL-2.0 OR W3C-20150513",
"repository": {
"type": "git",
"url": "https://github.com/eclipse-thingweb/playground.git"
},
"devDependencies": {
"@microsoft/eslint-formatter-sarif": "^2.1.7",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.8.0",
"husky": "^7.0.4",
"lerna": "^5.4.3",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.1"
},
"scripts": {
"install": "lerna bootstrap",
"lint": "npx eslint . --config .eslintrc.json",
"lint:sarif": "npx eslint . --config .eslintrc.json --format @microsoft/eslint-formatter-sarif --output-file eslint-results.sarif",
"lint:fix": "npx eslint . --config .eslintrc.json --fix",
"format": "prettier --write . && npm run format --silent --workspaces --if-present",
"format:quick": "pretty-quick"
}
}