forked from callstack/react-native-socket-mobile
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1 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
{
"name": "@getgreenline/react-native-socket-mobile",
"version": "0.0.7",
"description": "React Native Socket Mobile for https://www.socketmobile.com/developers",
"author": "Sam Hoult <sam@getgreenline.co>",
"main": "index.js",
"homepage": "https://github.com/getgreenline/react-native-socket-mobile",
"license": "MIT",
"files": [
"ios/",
"index.js"
],
"scripts": {
"start": "react-native start",
"lint": "eslint .",
"flow": "flow",
"test": "jest",
"test:coverage": "node node_modules/.bin/jest --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"babel-preset-react-native": "4.0.0",
"coveralls": "^3.0.0",
"eslint": "^4.19.1",
"eslint-config-callstack-io": "^1.1.1",
"flow-bin": "0.65.0",
"jest": "22.4.3",
"react": "^16.3.0-alpha.1",
"react-native": "0.54.2"
},
"jest": {
"preset": "react-native"
}
}