-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
65 lines (65 loc) · 1.91 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
62
63
64
65
{
"name": "react-weather-display",
"version": "1.0.1",
"description": "A React.js component for displaying basic weather conditions.",
"main": "dist/react-weather-display.js",
"scripts": {
"basic-example": "npm run compile && browserify -t [ babelify --presets [ react ] ] example/js/index.js -o example/js/bundle.js && node example/js/basic.js",
"compile": "babel --presets react src/react-weather-display.js --out-file dist/react-weather-display.js",
"prepublish": "npm run build",
"build": "cross-env-shell BABEL_ENV=production NODE_ENV=production \"rimraf dist && webpack\"",
"start": "micro examples/react-weather-display"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/kevinmellott91/react-weather-display.git"
},
"keywords": [
"React.js",
"React",
"html",
"weather",
"forecast",
"component",
"react-component"
],
"author": "Kevin Mellott <[email protected]> (https://www.github.com/kevinmellott91)",
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/kevinmellott91/react-weather-display/blob/master/LICENSE"
}
],
"bugs": {
"url": "https://github.com/kevinmellott91/react-weather-display/issues"
},
"browserify": {
"transform": [
"babelify"
]
},
"homepage": "https://github.com/kevinmellott91/react-weather-display",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-babili": "^0.1.2",
"babel-preset-env": "^1.5.1",
"babili-webpack-plugin": "^0.1.1",
"cross-env": "^5.0.0",
"rimraf": "^2.6.1",
"webpack": "^2.6.1",
"webpack-node-externals": "^1.6.0",
"yargs": "^8.0.1"
},
"peerDependencies": {},
"browserDependencies": {},
"dependencies": {
"prop-types": "^15.5.10",
"react": "^15.6.0"
}
}