-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.34 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.34 KB
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
46
47
48
49
{
"name": "mpkg-packager",
"version": "0.1.0",
"description": "wrapper lib for mpkg server",
"main": "src/index.js",
"sources": {
"react-native-v1": "lib-rn/index.js"
},
"files": [
"lib",
"lib-rn",
"src"
],
"scripts": {
"clean": "rm -rf lib/ lib-rn/",
"build": "npm run build-node && npm run build-rn",
"build-rn": "mkdir -p lib-rn/ && BABEL_ENV=publish-rn babel src -d lib-rn",
"build-node": "mkdir -p lib/ && BABEL_ENV=publish-node babel src -d lib",
"test": "mocha --compilers js:babel-core/register",
"coverage": "nyc npm test && nyc report",
"prepublish": "npm run clean && npm run build"
},
"author": "Dave Weaver (http://daveweaver.net)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/davideweaver/mpkg-packager.git"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.4.0",
"babel-preset-react-native": "^1.9.1",
"babel-preset-react-native-syntax": "^1.0.0",
"mocha": "^3.3.0",
"nyc": "^10.3.2",
"sinon": "^2.2.0"
},
"dependencies": {
"adm-zip": "^0.4.7",
"async-file": "^2.0.2",
"cacheman": "^2.2.1",
"cacheman-file": "^0.2.1",
"fs": "0.0.1-security",
"request": "^2.81.0",
"request-promise-native": "^1.0.4",
"xml2js": "^0.4.17"
}
}