-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
45 lines (45 loc) · 1.41 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": "Magnet",
"version": "1.3.1",
"private": true,
"scripts": {
"lint": "eslint ./*.js ./lib/ ./test/",
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "node node_modules/.bin/jest --verbose",
"pretest": "npm run lint",
"postinstall": "cd ios && carthage bootstrap --platform iOS >/dev/null 2>&1 || { echo >&2 \"I require Carthage to build the iOS dependenices. Follow README to learn more about this.\";}"
},
"dependencies": {
"buffer": "^4.5.1",
"events": "^1.1.0",
"magnet-html-parser": "github:mozilla-magnet/magnet-html-parser#v3.1.2",
"magnet-scanner-android": "mozilla-magnet/magnet-scanner-android#v4.0.3",
"react": "15.3.x",
"react-native": "^0.35.0",
"react-native-linear-gradient": "^1.5.13",
"react-redux": "^4.4.5",
"redux": "^3.5.2",
"redux-logger": "^2.7.4",
"redux-thunk": "^2.1.0",
"stream": "0.0.2",
"tinycolor2": "^1.3.0"
},
"devDependencies": {
"babel-jest": "^16.0.0",
"babel-preset-react-native": "^1.9.0",
"eslint": "^2.5.3",
"eslint-plugin-react": "^6.5.0",
"jest": "^16.0.2",
"jest-react-native": "^16.1.0",
"react-test-renderer": "^15.3.2",
"request": "^2.72.0",
"uri-template": "^1.0.0"
},
"browser": {
"stream": "./node_modules/stream/index.js",
"buffer": "./node_modules/buffer/index.js"
},
"jest": {
"preset": "jest-react-native"
}
}