-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 789 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 789 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
{
"name": "react-native-split",
"version": "1.0.0",
"description": "React native bundle split tool.",
"main": "index.js",
"scripts": {
"lint": "node_modules/.bin/flow",
"test": "jest"
},
"author": "Desmond Yao",
"license": "ISC",
"jest": {
"setupFiles": [
"./jest/setup.js"
]
},
"dependencies": {
"babel-register": "^6.24.1",
"babel-traverse": "^6.24.1",
"babylon": "^6.16.1",
"commander": "^2.9.0",
"minimatch": "^3.0.3",
"uglify-js": "^2.8.22"
},
"devDependencies": {
"babel-jest": "^19.0.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-es2015-node": "^6.1.1",
"eslint": "^3.19.0",
"flow-bin": "^0.43.1",
"jest": "^19.0.2",
"regenerator-runtime": "^0.10.3"
}
}