forked from serenity-js/serenity-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 3.45 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "serenity-js-monorepo",
"version": "2.0.0-monorepo",
"description": "Serenity/JS: Next generation acceptance testing library for modern web applications.",
"private": true,
"author": {
"name": "Jan Molak",
"email": "jan.molak@smartcodeltd.co.uk",
"url": "https://janmolak.com"
},
"homepage": "https://serenity-js.org",
"license": "Apache-2.0",
"keywords": [
"protractor",
"mocha",
"cucumber",
"angular",
"tdd",
"bdd",
"test",
"selenium",
"webdriverjs",
"webdriver",
"testing"
],
"scripts": {
"clean": "rimraf target && lerna run clean --parallel",
"lint": "lerna run lint --parallel",
"test": "lerna run test --stream --scope @serenity-js/*",
"integration-tests": "lerna run test --stream --scope @integration/*",
"compile": "lerna run compile --stream",
"verify": "npm run lint && npm run compile && npm test && npm run integration-tests",
"site": "lerna run site --stream",
"site:publish": "gh-pages -t -d documentation/website/target/site -r \"https://${GH_TOKEN}@github.com/serenity-js/serenity-js.git\"",
"report": "npm run coverage:merge && npm run coverage:report",
"coverage:merge": "istanbul-merge --out=./target/coverage/coverage-final.json ./target/coverage/**/coverage-final.json",
"coverage:report": "nyc report --reporter=html --reporter=lcov --temp-directory=./target/coverage --report-dir=./target/coverage",
"coverage:publish": "cat ./target/coverage/lcov.info | node ./node_modules/coveralls/bin/coveralls.js",
"commit": "git-cz",
"lerna": "lerna",
"postinstall": "lerna bootstrap --hoist --nohoist=@types/jasmine --nohoist=@types/mocha && link-parent-bin -c packages && link-parent-bin -c integration && link-parent-bin -c examples && link-parent-bin -c documentation",
"travis-deploy-once": "travis-deploy-once"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/chai-as-promised": "^7.1.2",
"@types/node": "^12.12.37",
"@types/sinon": "^9.0.0",
"@types/sinon-chai": "^3.2.4",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"commitizen": "^4.0.4",
"coveralls": "^3.0.13",
"cross-env": "^7.0.2",
"cz-conventional-changelog": "^3.1.0",
"esdoc": "^1.1.0",
"esdoc-accessor-plugin": "^1.0.0",
"esdoc-coverage-plugin": "^1.1.0",
"esdoc-external-ecmascript-plugin": "^1.0.0",
"esdoc-integrate-test-plugin": "^1.0.0",
"esdoc-lint-plugin": "^1.0.2",
"esdoc-publish-html-plugin": "^1.1.2",
"esdoc-type-inference-plugin": "^1.0.2",
"esdoc-undocumented-identifier-plugin": "^1.0.0",
"esdoc-unexported-identifier-plugin": "^1.0.0",
"gh-pages": "^2.2.0",
"istanbul": "^0.4.5",
"istanbul-merge": "^1.1.1",
"lerna": "^3.20.2",
"link-parent-bin": "^1.0.2",
"mocha": "^7.1.1",
"mocha-parallel-tests": "^2.3.0",
"mocha-testdata": "^1.2.0",
"nyc": "^15.0.1",
"rimraf": "^3.0.2",
"semver": "^7.3.2",
"sinon": "^9.0.2",
"sinon-chai": "^3.5.0",
"travis-deploy-once": "^5.0.11",
"ts-node": "^8.9.0",
"tslint": "^6.1.1",
"tslint-microsoft-contrib": "^6.2.0",
"typescript": "^3.8.3"
},
"repository": {
"type": "git",
"url": "https://github.com/serenity-js/serenity-js.git"
},
"bugs": {
"url": "https://github.com/serenity-js/serenity-js/issues"
},
"engines": {
"node": ">= 10",
"npm": ">= 6"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}