forked from sakuli/sakuli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.53 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.53 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "sakuli",
"keywords": [
"sakuli",
"e2e",
"ui",
"testing"
],
"contributors": [
"Tim Keiner <tim.keiner@consol.de>",
"Simon Hofmann <simon.hofmann@consol.de>",
"Sven Hettwer <sven.hettwer@consol.de>",
"Cliff Le Van <cliff.le.van@consol.de>"
],
"homepage": "https://github.com/sakuli/sakuli#readme",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/sakuli/sakuli.git"
},
"bugs": {
"url": "https://github.com/sakuli/sakuli/issues"
},
"private": true,
"scripts": {
"audit": "npm audit fix && lerna-audit",
"rebuild": "npm run clean && npm i && npm run bootstrap && npm run build",
"postinstall": "lerna bootstrap --progress --no-ci",
"clean": "lerna clean -y && npm run clean:artifacts",
"clean:artifacts": "lerna exec -- rm -rf dist/ tsconfig.tsbuildinfo",
"coverage:clean": "rimraf coverage",
"coverage:merge": "istanbul-merge --out coverage/merged/coverage-final.json coverage/unit/coverage-final.json coverage/it/coverage-final.json",
"coverage:merge-report": "nyc report --reporter=lcov --reporter=text --temp-dir=./coverage/merged --report-dir=./coverage/merged",
"build": "lerna run build",
"postbuild": "lerna bootstrap",
"test": "jest",
"test:it": "jest -c jest.it.config.js --runInBand --no-cache --passWithNoTests --coverage",
"test:e2e": "npm --prefix ./packages/e2e test",
"bootstrap": "lerna bootstrap",
"lerna:publish": "lerna publish from-package --yes ",
"lerna:publish-next": "lerna publish --canary --include-merged-tags --preid next --dist-tag next --pre-dist-tag next --no-push --no-git-tag-version --no-git-reset --force-publish --yes",
"share-scripts": "node scripts/distribute-npm-scripts"
},
"devDependencies": {
"husky": "8.0.1",
"istanbul-merge": "1.1.1",
"jest": "26.6.3",
"jest-jasmine2": "26.6.3",
"lerna": "5.1.8",
"lerna-audit": "1.3.3",
"nyc": "15.1.0",
"prettier": "2.7.1",
"pretty-quick": "3.1.3",
"rimraf": "3.0.2",
"ts-jest": "26.5.6",
"yargs": "17.5.1"
},
"sharedScripts": {
"typedoc": "typedoc --options ../../typedoc.js --out ../../docs/{package} src/index.ts",
"typedoc:json": "typedoc --options ../../typedoc.js --json ../../docs/{package}/docs.json --out ../../docs/{package} src/index.ts",
"test:watch": "jest --watch --coverage",
"test:ci": "jest --runInBand --no-cache --coverage --passWithNoTests"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}