forked from sakuli/sakuli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.28 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": "sakuli",
"keywords": [
"sakuli",
"e2e",
"ui",
"testing"
],
"contributors": [
"Tim Keiner <[email protected]>",
"Simon Hofmann <[email protected]>",
"Sven Hettwer <[email protected]"
],
"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": {
"postinstall": "lerna bootstrap --progress --no-ci",
"build": "lerna run build",
"test": "jest",
"test:it": "jest -c jest.it.config.js --runInBand --no-cache --passWithNoTests --coverage",
"bootstrap": "lerna bootstrap",
"lerna:publish": "lerna publish from-package --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 --out ../../docs/api/{package} --hideGenerator --mode file --excludeExternals --readme README.md --exclude *.spec.* src/",
"test:watch": "jest --watch --coverage",
"test:ci": "jest --runInBand --no-cache --coverage --passWithNoTests"
}
}