forked from cortexmg/nightwatch-xhr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.51 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
{
"name": "nightwatch-xhr",
"version": "0.4.7",
"description": "An XHR \"Listener\" for Nightwatch.js",
"main": "lib/waitForXHR.js",
"scripts": {
"prepare": "babel src --out-dir es5 --copy-files --delete-dir-on-start",
"build:watch": "babel src --out-dir es5 --copy-files --delete-dir-on-start --watch",
"test": "jest",
"test:watch": "jest --watch",
"test:watch:verbose": "jest --watch --verbose",
"coverage": "jest --coverage --verbose",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cortexmg/nightwatch-xhr.git"
},
"keywords": [
"ajax",
"xhr",
"nightwatchjs",
"nightwatch"
],
"author": "orzilca <[email protected]> (https://github.com/orzilca)",
"license": "MIT",
"bugs": {
"url": "https://github.com/cortexmg/nightwatch-xhr/issues"
},
"homepage": "https://github.com/cortexmg/nightwatch-xhr#readme",
"jest": {
"testRegex": "test/([^/]+/?){2}\\.js$",
"moduleFileExtensions": [
"js"
],
"transform": {
"^.+\\.js$": "babel-jest"
}
},
"devDependencies": {
"all-contributors-cli": "^4.10.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-jest": "^22.0.1",
"babel-plugin-dynamic-import-node": "^1.2.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"flow-bin": "^0.61.0",
"jest": "^22.0.1"
}
}