-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
50 lines (50 loc) · 1.32 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
{
"name": "react-daytime",
"version": "1.3.0",
"description": "react-daytime",
"main": "lib/ReactDaytime.js",
"author": "Subir Chowdhuri",
"homepage": "https://github.com/schowdhuri/react-daytime",
"repository": {
"type": "git",
"url": "https://github.com/schowdhuri/react-daytime.git"
},
"bugs": {
"url": "https://github.com/schowdhuri/react-daytime/issues"
},
"dependencies": {
"classnames": "^2.1.2",
"paper": "^0.11.5",
"uuid4": "^1.0.0"
},
"devDependencies": {
"babel-eslint": "^8.0.1",
"eslint": "^4.9.0",
"eslint-plugin-react": "^7.4.0",
"gulp": "^3.9.1",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-component-gulp-tasks": "git+https://git@github.com/schowdhuri/react-component-gulp-tasks.git",
"react-dom": "^16.0.0"
},
"peerDependencies": {
"react": "^16.0.0"
},
"browserify-shim": {
"react": "global:React"
},
"scripts": {
"build": "gulp clean && NODE_ENV=production gulp build",
"examples": "gulp dev:server",
"lint": "eslint ./; true",
"publish:site": "NODE_ENV=production gulp publish:examples",
"release": "NODE_ENV=production gulp release",
"start": "gulp dev",
"test": "echo \"no tests yet\" && exit 0",
"watch": "gulp watch:lib"
},
"keywords": [
"react",
"react-component"
]
}