-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
49 lines (49 loc) · 1.22 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
{
"name": "react-native-web-linear-gradient",
"version": "1.0.4",
"description": "React Native for Web implementation of react-native-linear-gradient",
"main": "dist/index.js",
"main-es": "src/index.js",
"repository": "https://github.com/react-native-web-community/react-native-web-linear-gradient",
"author": {
"name": "Louis Lagrange",
"email": "lagrange.louis@gmail.com",
"url": "https://github.com/Minishlink"
},
"license": "MIT",
"keywords": [
"react-native",
"react-native-web",
"react-native-linear-gradient",
"linear-gradient"
],
"scripts": {
"prepublish": "yarn build",
"build": "mkdir -p dist && babel src/index.js --out-file dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"babel": {
"presets": [
"react-native"
]
},
"files": [
"src",
"dist",
"yarn.lock"
],
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-react-native": "^4.0.0",
"prettier": "^1.7.3",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-native-web": "^0.1.1",
"webpack": "^3.6.0"
},
"peerDependencies": {
"react-native-web": "*"
}
}