-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
99 lines (99 loc) · 2.87 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
{
"name": "cucumber-perf",
"version": "2.0.2",
"description": "The js implimentation of Cucumber-Perf",
"keywords": [
"testing",
"bdd",
"cbdd",
"cucumber",
"gherkin",
"tests",
"performance",
"load"
],
"homepage": "https://github.com/mpinardi/cucumber-performance-js",
"author": "M Pinardi <[email protected]> ()",
"repository": {
"type": "git",
"url": "git://github.com/mpinardi/cucumber-performance-js.git"
},
"bugs": {
"url": "http://github.com/mpinardi/cucumber-performance-js/issues"
},
"directories": {
"lib": "./lib"
},
"main": "./lib/index",
"engines": {
"node": ">=0.10"
},
"bin": {
"cucumber-perf": "./bin/cucumber-perf"
},
"files": [
"bin/",
"lib/"
],
"scripts": {
"feature-test": "node ./bin/cucumber-perf -p test\\plans\\ --plan-tags @simPos -f progress -f summary test\\features\\",
"build-local": "babel src -d lib --copy-files --no-copy-ignored --config-file ./build.babelrc",
"build-local-test": "babel test/steps -d test/features/steps --config-file ./build.babelrc'",
"lint-autofix": "eslint --fix \"{example,features,scripts,src,test}/**/*.js\"",
"lint-code": "eslint \"{example,features,scripts,src,test}/**/*.js\"",
"lint-dependencies": "dependency-lint",
"lint": "npm run lint-code && npm run lint-dependencies",
"test": "mocha src/**/*_spec.js --require @babel/register"
},
"license": "MIT",
"dependencies": {
"bluebird": "^3.7.2",
"cli-table3": "^0.5.1",
"colors": "^1.4.0",
"commander": "^2.20.3",
"cross-spawn": "^6.0.5",
"cucumber": "^6.0.5",
"cucumber-tag-expressions": "^2.0.3",
"figures": "^3.2.0",
"glob": "^7.1.6",
"indent-string": "^4.0.0",
"knuth-shuffle-seeded": "^1.0.6",
"lodash": "^4.17.10",
"moment": "^2.24.0",
"mz": "^2.4.0",
"resolve": "^1.15.1",
"serialize-error": "^3.0.0",
"stack-chain": "^2.0.0",
"string-argv": "0.1.1",
"title-case": "^2.1.1"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-function-bind": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.18.9",
"@babel/preset-env": "^7.9.5",
"@babel/register": "^7.9.0",
"babel-eslint": "^10.1.0",
"babel-plugin-istanbul": "^5.2.0",
"babelify": "^10.0.0",
"chai": "^4.2.0",
"dependency-lint": "^5.0.1",
"eslint": "^4.1.1",
"eslint-config-prettier": "^2.2.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-prettier": "^2.1.2",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"fs-extra": "^7.0.1",
"gherkin": "^5.1.0",
"mocha": "^4.1.0",
"prettier": "^1.19.1",
"sinon": "^6.3.5",
"sinon-chai": "^3.5.0",
"tmp": "^0.1.0"
}
}