forked from xolvio/chimp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 2.91 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
100
101
102
103
104
105
106
107
108
{
"name": "chimp",
"version": "0.40.4",
"description": "Develop acceptance tests & end-to-end tests with realtime feedback.",
"keywords": [
"simian",
"meteor",
"velocity",
"bdd",
"atdd",
"cucumber",
"webdriverio",
"selenium",
"phantom",
"testing",
"saucelabs"
],
"author": "Sam Hatoum <sam@xolv.io> (http://xolv.io)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/xolvio/chimp"
},
"homepage": "",
"bugs": {
"url": "https://github.com/xolvio/chimp/issues"
},
"scripts": {
"prepublish": "node ./scripts/prepublish.js",
"lint": "eslint ./src",
"lintfix": "eslint ./src --fix",
"start": "node ./scripts/run.js",
"testonly": "npm run-script prepublish && node ./scripts/run-tests.js",
"test": "npm run lint && npm run testonly",
"publish-patch": "npm version patch; npm publish; git push; git push --tags",
"publish-minor": "npm version minor; npm publish; git push; git push --tags",
"publish-major": "npm version major; npm publish; git push; git push --tags"
},
"main": "dist/lib/chimp.js",
"bin": {
"chimp": "./bin/chimp.js"
},
"jest": {
"testRunner": "<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2.js",
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"moduleFileExtensions": [
"js",
"json",
"node"
],
"unmockedModulePathPatterns": [
"core-js/.*",
"babel-runtime/.*"
]
},
"dependencies": {
"async": "~0.9.0",
"babel-core": "^6.4.5",
"babel-plugin-transform-runtime": "6.x.x",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "6.x.x",
"babel-preset-stage-2": "6.x.x",
"babel-register": "^6.4.3",
"babel-runtime": "6.x.x",
"bluebird": "^2.9.33",
"chai": "~3.0.0",
"chai-as-promised": "~5.1.0",
"child-process-debug": "0.0.7",
"chokidar": "~1.5.1",
"colors": "1.1.2",
"commander": "^2.9.0",
"cucumber": "xolvio/cucumber-js#v1.2.2-chimp",
"deep-extend": "^0.4.1",
"exit": "^0.1.2",
"fibers": "^1.0.13",
"freeport": "~1.0.5",
"fs-extra": "~0.30.0",
"glob": "^6.0.1",
"hapi": "8.8.0",
"jasmine": "^2.4.1",
"loglevel": "~1.4.0",
"minimist": "~1.2.0",
"mocha": "2.5.3",
"phantomjs2": "~2.2.0",
"progress": "^1.1.8",
"request": "2.67.0",
"requestretry": "1.5.0",
"saucelabs": "~0.1.1",
"selenium-standalone": "^4.9.0",
"underscore": "~1.8.3",
"xolvio-ddp": "^0.12.0",
"xolvio-jasmine-expect": "^1.0.0",
"xolvio-sync-webdriverio": "deskfed/sync-webdriverio.git"
},
"devDependencies": {
"babel-cli": "6.x.x",
"babel-jest": "^6.0.1",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^2.1.1",
"eslint-plugin-babel": "^3.0.0",
"git-release-notes": "0.0.2",
"jest-cli": "Sanjo/jest#7c71094",
"shelljs": "^0.6.0"
},
"bundledDependencies": [
"cucumber"
]
}