-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
73 lines (73 loc) · 2.13 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
{
"name": "cucumber-teamcity-formatter",
"version": "0.0.0-development",
"description": "Formatter for cucumber-js to write test output to the console in a format parsable by TeamCity.",
"main": "dist/cucumber-teamcity-formatter.js",
"scripts": {
"test": "gulp",
"lint": "gulp lint",
"watch": "gulp watch",
"build": "gulp build",
"coverage": "gulp build && nyc mocha",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/bingnz/cucumber-teamcity-formatter.git"
},
"keywords": [],
"author": "David Chandler",
"license": "MIT",
"bugs": {
"url": "https://github.com/bingnz/cucumber-teamcity-formatter/issues"
},
"homepage": "https://github.com/bingnz/cucumber-teamcity-formatter#readme",
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-function-bind": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/preset-env": "^7.6.3",
"@babel/register": "^7.6.2",
"@semantic-release/changelog": "^5.0.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"chai": "^4.2.0",
"cucumber": "^6.0.2",
"del": "^5.1.0",
"eslint-plugin-babel": "^5.3.0",
"events": "^3.0.0",
"gherkin": "5.1.0",
"gulp": "^4.0.2",
"gulp-cli": "^2.2.0",
"gulp-eslint": "^6.0.0",
"gulp-filter": "^6.0.0",
"gulp-load-plugins": "^2.0.1",
"gulp-mocha": "^7.0.2",
"gulp-plumber": "^1.2.1",
"gulp-rename": "^2.0.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-uglify": "^3.0.2",
"json-loader": "^0.5.7",
"memory-streams": "^0.1.3",
"mocha": "^7.0.1",
"nyc": "^15.0.0",
"semantic-release": "^17.0.0",
"sinon": "^9.0.0",
"sinon-chai": "^3.3.0",
"terser-webpack-plugin": "^3.0.0",
"webpack-node-externals": "^1.7.2",
"webpack-stream": "^5.2.1"
},
"peerDependencies": {
"cucumber": ">= 6.0.2 < 7"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github"
]
}
}