forked from sakuli/sakuli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.84 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
46
47
48
49
50
51
52
{
"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": "node scripts/npm-audit",
"rebuild": "npm run clean && 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",
"build": "lerna run build",
"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 --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": {
"jest": "^24.7.1",
"lerna": "^3.13.3",
"ts-jest": "^24.0.2",
"yargs": "^12.0.5"
},
"sharedScripts": {
"typedoc": "typedoc --options ../../typedoc.js --out ../../docs/{package} src/",
"typedoc:json": "typedoc --options ../../typedoc.js --json ../../docs/{package}/docs.json --out ../../docs/{package} src/",
"test:watch": "jest --watch --coverage",
"test:ci": "jest --runInBand --no-cache --coverage --passWithNoTests"
}
}