forked from serenity-js/serenity-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
120 lines (120 loc) · 3.71 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "serenity-js",
"version": "0.0.1",
"description": "Serenity/JS: Next generation acceptance testing library for modern web applications.",
"author": "Jan Molak <[email protected]>",
"homepage": "http://serenity-js.org",
"license": "Apache-2.0",
"keywords": [
"protractor",
"mocha",
"cucumber",
"angular",
"tdd",
"bdd",
"test",
"selenium",
"webdriverjs",
"webdriver",
"testing"
],
"scripts": {
"clean": "rimraf target",
"verify": "lerna run verify --stream && npm run report",
"book:clean": "rimraf _book",
"book:build": "gitbook build",
"prebook:publish": "npm run book:clean && npm run book:build",
"book:publish": "node ./gh-pages.js -d _book --dotfiles",
"semantic-release": "lerna-semantic-release pre && lerna-semantic-release post && lerna-semantic-release perform",
"semantic-release-dry-run": "lerna-semantic-release pre && lerna-semantic-release post",
"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",
"gitbook": "gitbook",
"postinstall": "lerna bootstrap --hoist && link-parent-bin",
"travis-deploy-once": "travis-deploy-once"
},
"devDependencies": {
"@types/chai": "4.1.4",
"@types/chai-as-promised": "7.1.0",
"@types/mocha": "5.2.1",
"@types/node": "6.0.96",
"@types/sinon": "4.3.1",
"@types/sinon-chai": "2.7.31",
"chai": "4.1.2",
"chai-as-promised": "7.1.1",
"commitizen": "2.10.0",
"coveralls": "3.0.1",
"cz-lerna-changelog": "1.2.1",
"gh-pages": "1.2.0",
"gitbook-cli": "2.3.0",
"gitbook-plugin-addcssjs": "1.0.2",
"gitbook-plugin-advanced-emoji": "0.2.1",
"gitbook-plugin-anchors": "0.7.1",
"gitbook-plugin-editlink": "1.0.2",
"gitbook-plugin-ga": "1.0.1",
"gitbook-plugin-github": "2.0.0",
"gitbook-plugin-include-codeblock": "3.0.2",
"gitbook-plugin-rss": "3.0.0",
"gitbook-plugin-sitemap": "1.2.0",
"gitbook-plugin-styles-less": "1.0.0",
"gitbook-plugin-youtube": "1.1.0",
"istanbul": "0.4.5",
"istanbul-merge": "1.1.1",
"lerna": "2.11.0",
"lerna-semantic-release": "9.1.0",
"link-parent-bin": "0.2.0",
"mocha": "5.2.0",
"mocha-testdata": "1.2.0",
"nyc": "10.1.2",
"rimraf": "2.6.2",
"sinon": "5.0.7",
"sinon-chai": "3.0.0",
"travis-deploy-once": "^5.0.0",
"ts-helper": "0.0.1",
"ts-node": "6.0.4",
"tslint": "4.4.2",
"tslint-microsoft-contrib": "4.0.0",
"typescript": "2.3.4"
},
"repository": {
"type": "git",
"url": "https://github.com/jan-molak/serenity-js.git"
},
"bugs": {
"url": "https://github.com/jan-molak/serenity-js/issues"
},
"engines": {
"node": ">= 6.9.x",
"npm": ">= 3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-lerna-changelog"
}
},
"greenkeeper": {
"ignore": [
"@types/node",
"tslint",
"tslint-microsoft-contrib",
"typescript",
"nyc",
"gitbook-cli",
"gitbook-plugin-addcssjs",
"gitbook-plugin-advanced-emoji",
"gitbook-plugin-anchors",
"gitbook-plugin-editlink",
"gitbook-plugin-ga",
"gitbook-plugin-github",
"gitbook-plugin-include-codeblock",
"gitbook-plugin-rss",
"gitbook-plugin-sitemap",
"gitbook-plugin-styles-less",
"gitbook-plugin-youtube"
]
}
}