-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 846 Bytes
/
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
{
"name": "react-data-calendar",
"version": "0.1.0",
"description": "React data calendar component.",
"main": "index.js",
"scripts": {
"build": "npm run-script build-js && npm run-script build-less",
"build-js": "browserify --debug --transform reactify src/index.js > dist/bundle.js",
"build-less": "lessc src/less/index.less > dist/styles.css"
},
"repository": {
"type": "git",
"url": ""
},
"author": "Zachary Lumpkins",
"license": "MIT",
"dependencies": {
"react": "^0.12.2"
},
"devDependencies": {
"browserify": "^9.0.3",
"less": "^2.4.0",
"reactify": "^1.0.0"
},
"keywords": [
"react",
"reactjs",
"react-data-calendar",
"react-calendar",
"react-component",
"calendar",
"month"
],
"browserify": {
"transform": [
"reactify"
]
}
}