-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
64 lines (64 loc) · 1.6 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
{
"name": "tundra-fetch",
"version": "1.2.2",
"description": "Tundra-fetch is a client for the Tundra server that assist with offline test data management specifically for projects using the fetch http library",
"main": "index.js",
"keywords": [
"tundra",
"tundra-cli",
"tundra-fetch",
"fetch",
"mock",
"interceptor",
"intercept"
],
"scripts": {
"lint": "eslint .",
"test": "jest && codecov",
"validate": "npm run lint && npm run test"
},
"repository": {
"type": "git",
"url": "https://github.com/tylermurry/tundra-fetch"
},
"author": "Tyler Murry",
"license": "MIT",
"dependencies": {
"babel-preset-env": "^1.6.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-jest": "^23.4.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"core-js": "^2.5.5",
"fetch-mock": "^6.3.0",
"hashcode": "^1.0.3",
"lodash.escaperegexp": "^4.1.2",
"lodash.omit": "^4.5.0",
"matcher": "^1.1.1",
"url": "^0.11.0"
},
"devDependencies": {
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"codecov": "^3.1.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-import": "^2.13.0",
"jest": "^23.6.0",
"node-fetch": "^2.2.0",
"regenerator-runtime": "^0.12.1"
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/",
"/examples/"
],
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.js"
]
}
}