forked from adamchel/rn-eventsource
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1007 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 1007 Bytes
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
{
"name": "rn-eventsource",
"version": "1.0.0",
"description": "An EventSource implementation built on top of React Native's low-level Networking API",
"repository": {
"type": "git",
"url": "https://github.com/adamchel/rn-eventsource.git"
},
"main": "lib/EventSource.js",
"scripts": {
"build": "babel src/ -d lib/ --ignore '**/__tests__'",
"prepare": "npm run build",
"test": "jest src",
"flow": "flow"
},
"author": "Adam Chelminski",
"license": "MIT",
"peerDependencies": {
"react-native": "^0.62.0-rc.1"
},
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/preset-flow": "^7.8.3",
"babel-jest": "^25.1.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"flow-bin": "^0.117.0",
"jest": "^25.1.0",
"react-native": "^0.62.0-rc.1"
},
"dependencies": {
"event-target-shim": "^5.0.1"
}
}