-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
61 lines (61 loc) · 1.79 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "react-native-portal",
"version": "1.3.0",
"description": "Translocate your render destination, using mitt. Built with react@16 and react-native in mind.",
"main": "index.js",
"unpkg": "dist/umd.js",
"module": "dist/noflow.js",
"types": "index.d.ts",
"author": "Zenyr <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/zenyr/react-native-portal.git"
},
"scripts": {
"noflow": "cross-env NODE_ENV=production babel --no-babelrc index.js --out-file dist/noflow.js --plugins=transform-flow-strip-types,transform-class-properties",
"build": "cross-env NODE_ENV=production rollup -c&&yarn noflow",
"test": "jest"
},
"keywords": [
"portal",
"gateway",
"react",
"react-native"
],
"bugs": {
"url": "https://github.com/zenyr/react-native-portal/issues"
},
"homepage": "https://github.com/zenyr/react-native-portal",
"license": "MIT",
"dependencies": {
"mitt": "*",
"prop-types": "*",
"react": "*"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-jest": "^22.4.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-node-env-inline": "^0.1.1",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"cross-env": "^5.0.5",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"jest": "^22.4.3",
"react-dom": "*",
"rollup": "^0.45.2",
"rollup-plugin-babel": "^3.0.1",
"rollup-plugin-commonjs": "^8.1.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^2.0.1"
},
"jest": {
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
}
}