-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
77 lines (77 loc) · 2.19 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
{
"name": "cucumber-js-boilerplate",
"version": "0.9.0",
"author": "Yaron Assa",
"description": "Boilerplate for a large scale, hierarchical cucumberJS projects",
"license": "MIT",
"keywords": [
"cucumber",
"boilerplate",
"testing"
],
"scripts": {
"start": "./node_modules/.bin/ts-node ./infraRunner.ts",
"demo": "npm start -- cucumber --tags=@demo",
"test": "mocha -r ts-node/register -r ./test/testInfra/setup.ts './test/tests/**/*.ts'",
"coverage": "nyc mocha -r ts-node/register -r source-map-support/register --full-trace --bail -r ./test/testInfra/setup.ts './test/tests/**/*.ts' -R spec",
"reportCoverage": "nyc report --reporter=text-lcov | coveralls",
"precommit": "./node_modules/.bin/ts-node devTools/processGitHooks.ts --hook=preCommit",
"lint": "./node_modules/.bin/tslint --project ./",
"ci": "npm run lint && npm run coverage"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true
},
"dependencies": {
"typescript": "^3.1.6",
"ts-node": "^7.0.1",
"cucumber": "^5.0.2",
"yargs": "^12.0.2",
"fs-extra": "^7.0.1",
"moment": "^2.22.2",
"assign-deep": "^1.0.0",
"uuid": "^3.3.2",
"multiple-cucumber-html-reporter": "^1.11.4"
},
"devDependencies": {
"@types/bluebird": "^3.5.20",
"@types/chai": "^4.1.7",
"@types/chai-as-promised": "^7.1.0",
"@types/cucumber": "^4.0.4",
"@types/fs-extra": "^5.0.4",
"@types/mocha": "^5.2.5",
"@types/moment": "^2.13.0",
"@types/node": "^10.0.8",
"@types/sinon": "^5.0.5",
"@types/sinon-chai": "^3.2.0",
"@types/uuid": "^3.4.4",
"@types/winston": "^2.3.9",
"@types/yargs": "^11.0.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"deep-equal-in-any-order": "^1.0.10",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"sinon": "^7.1.1",
"sinon-chai": "^3.2.0",
"source-map-support": "^0.5.9",
"tslint": "^5.11.0",
"tslint-no-unused-expression-chai": "^0.1.4",
"husky": "^1.3.1",
"coveralls": "^3.0.2"
}
}