-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.27 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
{
"name": "react-native-web-responsive",
"version": "1.0.5",
"description": "Universal media queries for React Native and web",
"main": "lib/index.js",
"module": "es/index.js",
"react-native": "src/index.native.js",
"files": [
"es",
"lib",
"src/index.native.js"
],
"repository": "https://github.com/kiurchv/react-native-web-responsive",
"author": "Myroslav Kiurchev <[email protected]> (https://github.com/kiurchv/)",
"license": "MIT",
"keywords": [
"react",
"react-native",
"web",
"responsive",
"media-query"
],
"dependencies": {
"react-native-responsive": "^1.0.0",
"react-responsive": "^1.3.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-transform-es2015-block-scoping": "^6.24.1",
"babel-plugin-transform-es2015-destructuring": "^6.23.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-plugin-transform-es2015-shorthand-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0"
},
"scripts": {
"build": "npm run build:es && npm run build:cjs",
"build:es": "BABEL_ENV=cjs babel src/index.web.js --out-file lib/index.js",
"build:cjs": "babel src/index.web.js --out-file es/index.js",
"prepublish": "npm run build"
}
}