forked from kevinsqi/react-calendar-heatmap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.81 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
{
"name": "react-calendar-heatmap",
"version": "1.1.0",
"description": "A calendar heatmap component built on SVG, inspired by github's commit calendar graph.",
"author": "Kevin Qi <[email protected]>",
"main": "./build/index.js",
"repository": {
"type": "git",
"url": "https://github.com/patientslikeme/react-calendar-heatmap.git"
},
"license": "MIT",
"keywords": [
"calendar",
"react",
"react-component",
"svg"
],
"scripts": {
"build": "NODE_ENV=production webpack",
"build:demo": "NODE_ENV=demo webpack",
"deploy:demo": "npm run build:demo && ./scripts/build_ghpages.sh",
"clean": "rimraf build",
"lint": "eslint --ext .js,.jsx --cache . && echo \"eslint: no lint errors found\" || true",
"prepublish": "npm run clean && npm run build",
"test": "mocha --compilers js:babel-register --recursive --require ./test/setup.js ./test/components/**/*.js* || true",
"test:watch": "npm test -- --watch",
"start": "webpack-dev-server --progress --inline"
},
"devDependencies": {
"babel-core": "^6.3.15",
"babel-eslint": "^7.1.0",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-register": "^6.8.0",
"chai": "^3.5.0",
"enzyme": "^2.3.0",
"eslint": "^3.8.0",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.0",
"eslint-plugin-react": "^6.0.0",
"jsdom": "^9.0.0",
"mocha": "^3.0.0",
"react": "^15.0.0",
"react-addons-test-utils": "^15.0.2",
"react-dom": "^15.0.0",
"rimraf": "^2.3.4",
"webpack": "^1.12.9",
"webpack-dev-server": "^1.14.1"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0"
},
"dependencies": {
"lodash.range": "^3.1.4",
"lodash.reduce": "^4.3.0"
}
}