forked from WhatAKitty/react-native-fetch-mock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.18 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
{
"name": "react-native-fetch-mock",
"version": "0.3.3",
"description": "fetch mock for react-native",
"main": "index.js",
"scripts": {
"build": "npm run lint && npm run test && ./node_modules/.bin/babel src --out-dir dist",
"test": "./node_modules/.bin/mocha --compilers js:babel-core/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": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.2",
"babel-polyfill": "^6.23.0",
"babel-preset-react-native": "^1.9.1",
"eslint": "^3.19.0",
"expect.js": "^0.3.1",
"mocha": "^3.2.0"
},
"dependencies": {
"mockjs": "^1.0.1-beta3"
}
}