-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
45 lines (45 loc) · 1.51 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
{
"name": "root",
"private": true,
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/mattrglobal/jsonld-lint"
},
"bugs": {
"url": "https://github.com/mattrglobal/jsonld-lint/issues"
},
"homepage": "https://github.com/mattrglobal/jsonld-lint#readme",
"useWorkspaces": true,
"workspaces": [
"packages/*"
],
"scripts": {
"test": "lerna run test",
"build": "lerna run build",
"format": "prettier --write \"**/*.ts\" \"**/*.md\" \"!**/lib/**\"",
"pre-pr": "yarn format && yarn lint:fix && yarn build && yarn test",
"lint": "prettier --check \"**/*.ts\" \"**/*.md\" \"!**/lib/**\" && tslint --project ./tsconfig.json",
"lint:fix": "prettier --check \"**/*.ts\" \"**/*.md\" \"!**/lib/**\" && tslint --project ./tsconfig.json --fix",
"publish:unstable": "lerna publish --canary --dist-tag=unstable --preid=unstable --yes --exact",
"publish:release": "lerna publish from-git --yes",
"version:release": "lerna version minor --yes --exact --no-push",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "17.0.2",
"@commitlint/config-conventional": "17.0.2",
"husky": "8.0.1",
"jest": "29.7.0",
"jest-html-reporters": "3.0.9",
"lerna": "5.1.8",
"prettier": "2.6.2",
"pretty-quick": "3.1.3",
"ts-jest": "29.2.5",
"tslint": "5.20.1",
"tslint-config-prettier": "1.18.0",
"tslint-consistent-codestyle": "1.16.0",
"tslint-immutable": "6.0.1",
"typescript": "4.3.5"
}
}