forked from serenity-js/serenity-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.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
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
{
"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": "lerna run clean",
"verify": "lerna run verify --stream",
"verify:pull-request": "lerna run verify:pull-request --stream",
"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",
"coverage:publish": "cat ./packages/serenity-js/staging/reports/coverage/lcov.info | node ./node_modules/coveralls/bin/coveralls.js",
"commit": "git-cz",
"lerna": "lerna",
"gitbook": "gitbook",
"postinstall": "lerna bootstrap --loglevel silly"
},
"devDependencies": {
"@types/chai": "3.4.34",
"@types/chai-as-promised": "0.0.29",
"@types/mocha": "2.2.39",
"@types/node": "6.0.63",
"@types/sinon": "1.16.34",
"@types/sinon-chai": "2.7.27",
"chai": "3.5.0",
"chai-as-promised": "6.0.0",
"commitizen": "2.9.5",
"coveralls": "2.11.16",
"cz-lerna-changelog": "1.2.1",
"gh-pages": "0.12.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.0.0-beta.38",
"lerna-semantic-release": "9.0.7",
"mocha": "3.2.0",
"mocha-testdata": "1.2.0",
"nyc": "10.1.2",
"rimraf": "2.6.1",
"sinon": "1.17.7",
"sinon-chai": "2.8.0",
"ts-helper": "0.0.1",
"ts-node": "2.1.0",
"tslint": "4.4.2",
"tslint-microsoft-contrib": "4.0.0",
"typescript": "2.1.6"
},
"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"
}
}
}