-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
43 lines (43 loc) · 1.21 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
{
"name": "popcorn-sdk",
"version": "3.0.0",
"description": "Popcorn SDK",
"keywords": [
"popcorn",
"popcorn-time",
"sdk"
],
"homepage": "https://github.com/tripss/popcorn-sdk",
"bugs": {
"url": "https://github.com/tripss/popcorn-sdk/issues"
},
"author": {
"name": "Tycho Bokdam",
"email": "[email protected]"
},
"main": "./index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/tripss/popcorn-sdk.git"
},
"scripts": {
"build": "NODE_ENV=production babel src -d ./ --copy-files --ignore __tests__",
"build:watch": "yarn build --watch",
"prepublish": "yarn build"
},
"dependencies": {
"axios": "^0.18.0",
"react-native-xmlrpc": "github:nguyenphuquang/react-native-xmlrpc"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.3",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-proposal-decorators": "^7.2.3",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/plugin-transform-flow-strip-types": "^7.2.3",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/runtime": "^7.3.1"
}
}