-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.65 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "react-commit-calendar",
"version": "0.1.2",
"description": "commit calendar",
"main": "./lib/index.js",
"scripts": {
"dev": "node example/server",
"clean": "rimraf lib dist",
"build:lib": "babel src --out-dir lib",
"build:gh-pages": "cross-env NODE_ENV=production webpack --config example/webpack.prod.config.js",
"build:umd": "cross-env NODE_ENV=development webpack src/index.js dist/react-commit-calendar.js",
"build:umd:min": "cross-env NODE_ENV=production webpack src/index.js dist/react-commit-calendar.min.js",
"build": "npm run build:lib && npm run build:umd && npm run build:umd:min && node ./prepublish",
"deploy:gh-pages": "npm run build:gh-pages && git checkout gh-pages && cp example/dist/* . && git commit -am 'Code update' && git push origin gh-pages && git checkout master",
"prepublish": "npm run clean && npm run build",
"test": "mocha --compilers js:babel-core/register --recursive",
"test:watch": "npm run test -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/groupystinks/react-commit-calendar.git"
},
"files": [
"dist",
"lib",
"src"
],
"keywords": [
"d3",
"react",
"calendar",
"github"
],
"author": "Lai Chia Sheng <jason0911520@gmail.com> (http://groupystinks.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/groupystinks/react-commit-calendar/issues"
},
"homepage": "https://github.com/groupystinks/react-commit-calendar#readme",
"dependencies": {
"babel-runtime": "6.6.1",
"d3": "3.5.16"
},
"devDependencies": {
"babel-cli": "6.6.5",
"babel-core": "6.7.4",
"babel-eslint": "6.0.0",
"babel-loader": "6.2.4",
"babel-plugin-react-display-name": "2.0.0",
"babel-plugin-transform-runtime": "6.6.0",
"babel-plugin-undeclared-variables-check": "6.7.2",
"babel-preset-es2015": "6.6.0",
"babel-preset-react": "6.5.0",
"babel-preset-stage-0": "6.5.0",
"cross-env": "1.0.7",
"es3ify": "0.2.1",
"eslint": "2.5.3",
"eslint-config-airbnb": "6.2.0",
"eslint-loader": "1.3.0",
"eslint-plugin-import": "1.4.0",
"eslint-plugin-react": "4.2.3",
"expect": "1.16.0",
"expect-jsx": "2.4.0",
"extract-text-webpack-plugin": "1.0.1",
"history": "2.0.2",
"json-loader": "0.5.4",
"mocha": "2.4.5",
"react": "0.14.8",
"react-addons-test-utils": "0.14.8",
"react-dom": "0.14.8",
"react-hot-loader": "1.3.0",
"react-router": "2.2.2",
"rimraf": "2.5.2",
"webpack": "1.12.14",
"webpack-dev-server": "1.14.1"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0",
"react-dom": "^0.14.0 || ^15.0.0"
}
}