-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
50 lines (50 loc) · 1.32 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
{
"name": "react-native-fetch-mock",
"version": "1.0.0",
"description": "fetch mock for react-native",
"main": "index.js",
"scripts": {
"build": "yarn lint && yarn test && ./node_modules/.bin/babel src --out-dir dist",
"test": "./node_modules/.bin/mocha --require @babel/register",
"lint": "./node_modules/.bin/eslint src/**/*.js"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"dist/",
"__mocks__/",
"node_modules/"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/WhatAKitty/react-native-fetch-mock.git"
},
"keywords": [
"react-native",
"fetch-mock"
],
"author": "WhatAKitty",
"license": "MIT",
"bugs": {
"url": "https://github.com/WhatAKitty/react-native-fetch-mock/issues"
},
"homepage": "https://github.com/WhatAKitty/react-native-fetch-mock#readme",
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/eslint-parser": "^7.12.1",
"@babel/polyfill": "^7.12.1",
"@babel/preset-flow": "^7.12.1",
"@babel/register": "^7.12.1",
"eslint": "^7.12.0",
"expect.js": "^0.3.1",
"isomorphic-fetch": "^3.0.0",
"metro-react-native-babel-preset": "^0.63.0",
"mocha": "^8.2.0"
},
"dependencies": {
"mockjs": "^1.1.0",
"path-to-regexp": "^5.0.0"
}
}