forked from QbDVision-Inc/chimpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
128 lines (128 loc) · 3.43 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "chimpy",
"version": "0.54.0",
"description": "Develop acceptance tests & end-to-end tests with realtime feedback.",
"keywords": [
"simian",
"meteor",
"bdd",
"atdd",
"cucumber",
"webdriverio",
"selenium",
"phantom",
"testing",
"saucelabs"
],
"author": "Sam Hatoum <[email protected]> (http://xolv.io)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/TheBrainFamily/chimpy"
},
"homepage": "",
"bugs": {
"url": "https://github.com/TheBrainFamily/chimpy/issues"
},
"watch": {
"prepublish": "src/{lib,bin}/**/*.js"
},
"scripts": {
"watch": "npm-watch",
"prepublish": "node ./scripts/prepublish.js",
"lint": "eslint ./src",
"lintfix": "eslint ./src --fix",
"start": "node ./scripts/run.js",
"testonly": "npm run testunit && npm run prepublish && node ./scripts/run-tests.js",
"testunit": "mocha --opts ./mocha.opts \"`node -e \"console.log(require('./package.json').mocha.tests.join(' '))\"`\"",
"test": "npm run testonly",
"publish-patch": "./scripts/release.sh patch",
"publish-minor": "./scripts/release.sh minor",
"publish-major": "./scripts/release.sh major"
},
"main": "dist/lib/chimp.js",
"bin": {
"chimp": "./bin/chimp.js",
"chimpy": "./bin/chimpy.js"
},
"mocha": {
"files": [
"src/**/*.js",
"!src/__mocks__/**/*",
"!src/__tests__/**/*",
"!src/**/*-spec.js"
],
"tests": [
"src/lib/**/*-spec.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": {
"@babel/core": "^7.1.2",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/register": "^7.0.0",
"@babel/runtime": "^7.1.2",
"async": "~0.9.0",
"bluebird": "^3.4.7",
"chai": "~4.1.2",
"chai-as-promised": "^6.0.0",
"child-process-debug": "0.0.7",
"chokidar": "~1.6.0",
"chromedriver": "^2.35",
"colors": "1.1.2",
"commander": "^2.9.0",
"cucumber": "xolvio/cucumber-js#v1.3.0-chimp.6",
"deep-extend": "^0.4.1",
"exit": "^0.1.2",
"fibers": "^1.0.14",
"freeport": "~1.0.5",
"fs-extra": "^1.0.0",
"glob": "lucetius/node-glob#chimp",
"hapi": "8.8.0",
"jasmine": "^2.4.1",
"jsonfile": "^4.0.0",
"loglevel": "~1.4.0",
"minimist": "~1.2.0",
"mocha": "^4.1.0",
"phantomjs-prebuilt": "2.1.15",
"progress": "^1.1.8",
"request": "^2.79.0",
"requestretry": "1.5.0",
"saucelabs": "^1.3.0",
"selenium-standalone": "^6.12.0",
"underscore": "~1.8.3",
"xolvio-ddp": "^0.12.0",
"xolvio-jasmine-expect": "^1.0.0",
"xolvio-sync-webdriverio": "^9.0.0"
},
"devDependencies": {
"@babel/cli": "7.1.2",
"babel-jest": "^23.6.0",
"eslint": "^3.12.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.8.0",
"git-release-notes": "0.0.2",
"jest-cli": "Sanjo/jest#7c71094",
"npm-watch": "^0.1.6",
"quibble": "^0.4.0",
"shelljs": "^0.7.5",
"testdouble": "^1.10.1"
}
}