forked from SAP/ui5-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.04 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
{
"name": "root",
"private": true,
"workspaces": {
"packages": [
"packages/*",
"demos/*"
],
"nohoist": [
"**/**/types"
]
},
"scripts": {
"lerna:version": "lerna version",
"lerna:publish": "lerna publish from-git --yes",
"lerna:nightly": "lerna run nightly --stream",
"ci": "npm-run-all format:validate build test",
"build": "lerna run build",
"test": "lerna run test",
"format:fix": "prettier --write \"**/*.@(ts|js|json|md|yml)\"",
"format:validate": "prettier --list-different \"**/*.@(ts|js|json|md|yml)\""
},
"husky": {
"hooks": {
"pre-commit": "lerna run precommit && lint-staged"
}
},
"lint-staged": {
"*.{ts,js,json,md,yml}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"chai": "^4.2.0",
"chai-match": "^1.1.1",
"husky": "^2.1.0",
"lerna": "^3.13.2",
"lint-staged": "^8.1.5",
"mocha": "^6.1.3",
"npm-run-all": "^4.1.5",
"prettier": "1.17.1"
}
}