-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 3.98 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
{
"name": "cukelib",
"version": "0.5.2",
"description": "Cucumber step definitions and service control for API testing",
"main": "lib",
"scripts": {
"spec": "./node_modules/.bin/mocha \"src/**/*_spec.js\"",
"lint": "./node_modules/.bin/eslint --config .eslintrc.js index.js src",
"flow": "flow; test $? -eq 0 -o $? -eq 2",
"example_features": "ls -1 -d examples/*/ | xargs -n 1 ./scripts/cukeexample",
"universe_features": "ls -1 src/universe/features/*.feature | xargs -n 1 ./scripts/cukeuniverse",
"step_features": "ls -1 src/step_features/*.feature | xargs -n 1 ./scripts/cukesteps",
"service_features": "ls -1 src/*_service/features/*.feature | xargs -n 1 ./scripts/cukeservice",
"child_service_feature": "./node_modules/.bin/cucumberjs --require src/child_service/features",
"init_child_service_features": "mkdir -p tmp; touch tmp/nothing; rm tmp/*",
"run_child_service_features": "ls -1 src/child_service/features/*.feature | xargs -n 1 npm run child_service_feature",
"check_child_service_features": "./src/child_service/features/check_child_service_features.js",
"child_service_features": "npm run init_child_service_features; npm run run_child_service_features && npm run check_child_service_features",
"knex_feature": "./node_modules/.bin/cucumberjs --require src/knex_service/features",
"knex_features": "./node_modules/.bin/cucumberjs --require src/knex_service/features src/knex_service/features",
"selenium_features": "./node_modules/.bin/cucumberjs --require src/selenium_services/features/webdriverio_test.js src/selenium_services/features/webdriverio.feature",
"features": "npm run universe_features && npm run child_service_features && npm run service_features && npm run step_features && npm run example_features",
"features_cuke1": "npm uninstall cucumber; npm install cucumber@1.3.1; npm run features",
"features_cuke2": "npm uninstall cucumber; npm install cucumber@latest; npm run features",
"test": "npm run lint && npm run flow && npm run spec && npm run features_cuke1 && npm run features_cuke2",
"jsdoc": "./node_modules/.bin/jsdoc -c doc/conf.json -t ./node_modules/ink-docstrap/template -r -R doc/index.md -d ./doc/jsdoc && ./scripts/mkdoctag",
"prepublish": "rm -rf lib && ./node_modules/.bin/babel src --ignore features,spec.js --out-dir lib && ./scripts/mkindex.js"
},
"engines": {
"node": ">=6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mjhm/cukelib.git"
},
"keywords": [
"cucumber",
"knex",
"lodash-match-pattern"
],
"author": "John McLaughlin",
"license": "MIT",
"bugs": {
"url": "https://github.com/mjhm/cukelib/issues"
},
"homepage": "https://github.com/mjhm/cukelib#readme",
"files": [
"lib"
],
"peerDependencies": {
"cucumber": "*"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.1",
"babel-plugin-transform-flow-strip-types": "^6.21.0",
"babel-register": "^6.18.0",
"cookie-session": "^2.0.0-alpha.2",
"eslint": "^3.15.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.9.0",
"flow-bin": "^0.39.0",
"http-proxy": "^1.15.2",
"ink-docstrap": "^1.3.0",
"jsdoc": "^3.4.3",
"jsdoc-babel": "^0.3.0",
"knex": "^0.12.6",
"mocha": "^3.1.2",
"mysql2": "^1.1.2",
"npm-install-peers": "^1.0.1",
"pg": "^6.1.2",
"rewire": "^2.5.2",
"selenium-standalone": "^6.0.1",
"sqlite3": "^3.1.8",
"webdriverio": "^4.5.2"
},
"dependencies": {
"bluebird": "^3.4.0",
"body-parser": "^1.15.2",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"chalk": "^1.1.3",
"express": "^4.14.0",
"handlebars": "^4.0.5",
"js-yaml": "^3.7.0",
"lodash": "^4.13.1",
"lodash-match-pattern": "^1.1.0",
"minimist": "^1.2.0",
"randexp": "^0.4.3",
"request": "^2.75.0",
"request-promise": "^4.1.1",
"tough-cookie": "^2.3.2"
}
}