-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
31 lines (31 loc) · 913 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
{
"name": "adobe-sdk-packages",
"private": true,
"scripts": {
"build": "lerna bootstrap && lerna run build",
"clean": "lerna run clean",
"coverage": "node tools/mapCoverage.js",
"format": "lerna run format",
"lint": "lerna run lint",
"pretty-quick": "pretty-quick",
"prepublish": "lerna bootstrap && lerna run build",
"publish": "node tools/npm-publish.js",
"test": "lerna run test --stream && npm run coverage",
"updateTestArtifacts": "bash tools/updateTestSchema.sh",
"codegen": "cd codegeneration && npm install && npm run codegen"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"devDependencies": {
"husky": "^4.3.0",
"istanbul-lib-coverage": "^3.0.0",
"istanbul-lib-report": "^3.0.0",
"istanbul-reports": "^3.0.1",
"lerna": "^4.0.0",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3"
}
}