-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
44 lines (44 loc) · 1.09 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
{
"name": "@pigzbe/react-native-stellar-sdk",
"version": "1.0.3",
"description": "Stellar SDK for React Native",
"author": "Ian McGregor <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pigzbe/react-native-stellar-sdk"
},
"main": "stellar-sdk.js",
"scripts": {
"axiosfix": "cd node_modules/stellar-sdk && yarn upgrade axios && yarn add axios",
"start": "webpack",
"test": "jest",
"publish": "npm publish --access public"
},
"dependencies": {
"react-native-randombytes": "^3.2.0"
},
"devDependencies": {
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.4",
"babel-preset-react-native": "^4.0.0",
"create-hash": "^1.1.3",
"eslint": "^4.19.1",
"jest": "^22.4.3",
"react-native": "^0.54.4",
"react-native-event-source": "^1.0.1",
"stellar-sdk": "^0.8.0",
"webpack": "^4.4.1",
"webpack-cli": "^2.0.13"
},
"jest": {
"preset": "react-native",
"verbose": true,
"globals": {
"window": true
},
"setupFiles": [
"<rootDir>/test/setup.js"
]
}
}