-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 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
{
"name": "@alpakaio/alpaka-native-request",
"version": "1.0.2",
"description": "Request facade used by Alpaka React Native apps",
"main": "index.js",
"private": false,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"flow-check": "npx flow check-contents < index.js.flow",
"ts-check": "npx tsc index.d.ts --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alpakaio/alpaka-native-request.git"
},
"author": {
"name": "Victoria French",
"email": "[email protected]",
"url": "https://github.com/victoriafrench"
},
"contributors": [
{
"name": "Victoria French",
"email": "[email protected]",
"url": "https://github.com/victoriafrench"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/alpakaio/alpaka-native-request/issues"
},
"homepage": "https://github.com/alpakaio/alpaka-native-request#readme",
"peerDependencies": {
"react-native-device-info": "^4"
},
"dependencies": {
"@alpakaio/alpaka-native-useragent": "^1",
"axios": "^0.19.0"
},
"keywords": [
"alpaka",
"network"
],
"typings": "./index.d.ts"
}