-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.75 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
{
"name": "setup-polly-jest",
"version": "0.11.0",
"description": "Setup helper for PollyJS when using in jest/jasmine test environment",
"main": "index.js",
"scripts": {
"build": "babel src --out-dir lib",
"test:unit": "jest -c ./test/jest-unit.config.json",
"test:jasmine": "JASMINE_CONFIG_PATH=./test/jasmine.config.json NODE_ENV=test jasmine",
"test:jest-jasmine2": "jest -c ./test/jest-jasmine-integration.config.json --verbose",
"test:jest-circus": "jest -c ./test/jest-circus-integration.config.json --verbose",
"test": "npm run test:unit && npm run test:jest-jasmine2 && npm run test:jest-circus && npm run test:jasmine",
"clear": "rm -rf lib",
"prepare": "npm run clear && npm run build",
"prepublishOnly": "npm run test"
},
"files": [
"LICENSE",
"README.md",
"index.js",
"jest-environment-node.js",
"jest-environment-jsdom.js",
"lib"
],
"keywords": [
"polly",
"pollyjs",
"jest",
"jasmine",
"test",
"testing",
"mock",
"helper"
],
"author": "Sergey Petushkov <[email protected]>",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@jest/globals": "*",
"@pollyjs/adapter-node-http": "*",
"@pollyjs/core": "*",
"@pollyjs/persister-fs": "*",
"core-js": "^3.2.1",
"eslint": "^5.6.1",
"jasmine": "*",
"jest": "*",
"jest-circus": "*",
"jest-environment-jsdom": "*",
"jest-environment-node": "*",
"jest-jasmine2": "*",
"node-fetch": "^2.2.0",
"prettier": "^1.14.3"
},
"peerDependencies": {
"@pollyjs/core": "*"
},
"repository": {
"type": "git",
"url": "https://github.com/gribnoysup/setup-polly-jest"
}
}