forked from KevinMellott91/react-nest-thermostat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.69 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
{
"name": "react-nest-thermostat",
"version": "1.0.8",
"description": "A React.js component for displaying the face of a Nest thermostat.",
"main": "dist/react-nest-thermostat.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-nest-thermostat.js --out-file dist/react-nest-thermostat.js",
"prepublish": "npm run compile"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/kevinmellott91/react-nest-thermostat.git"
},
"keywords": [
"React.js",
"React",
"html",
"Nest",
"thermostat",
"component",
"react-component"
],
"author": "Kevin Mellott <[email protected]> (https://www.github.com/kevinmellott91)",
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/kevinmellott91/react-nest-thermostat/blob/master/LICENSE"
}
],
"bugs": {
"url": "https://github.com/kevinmellott91/react-nest-thermostat/issues"
},
"browserify": {
"transform": [
"babelify"
]
},
"homepage": "https://github.com/kevinmellott91/react-nest-thermostat",
"devDependencies": {
"babel-cli": "6.5.0",
"babel-preset-react": "6.5.0",
"babelify": "7.2.0",
"browserify": "13.0.0",
"eslint": "^2.4.0",
"eslint-config-airbnb": "^6.2.0",
"eslint-plugin-react": "^4.2.3",
"express": "4.13.4",
"path": "0.12.7",
"react": "0.14.7",
"react-dom": "0.14.7"
},
"browserDependencies": {},
"dependencies": {
"prop-types": "^15.8.1",
"react": "0.14.7"
}
}