-
Notifications
You must be signed in to change notification settings - Fork 157
/
package.json
80 lines (80 loc) · 2.56 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
{
"name": "react-calendar-heatmap",
"version": "1.9.0",
"description": "A calendar heatmap component built on SVG, inspired by Github's commit calendar graph.",
"author": "Kevin Qi",
"main": "dist/react-calendar-heatmap.cjs.js",
"module": "dist/react-calendar-heatmap.esm.js",
"browser": "dist/react-calendar-heatmap.umd.js",
"style": "dist/styles.css",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/kevinsqi/react-calendar-heatmap.git"
},
"license": "MIT",
"keywords": [
"calendar",
"react",
"react-component",
"svg"
],
"scripts": {
"build": "npm-run-all clean build:css build:js",
"build:css": "postcss src/styles.css --use autoprefixer -d dist/ --no-map",
"build:js": "cross-env NODE_ENV=production rollup -c",
"clean": "rimraf dist",
"format": "prettier --write 'src/**/*' 'demo/src/**/*'",
"lint": "eslint src",
"prepare": "npm-run-all clean build",
"test": "jest --config jest.config.js --coverage",
"test:watch": "jest --config jest.config.js --watch",
"start": "npm-run-all --parallel start:js start:css",
"start:css": "postcss src/styles.css --use autoprefixer -d dist/ --no-map --watch",
"start:js": "cross-env NODE_ENV=development rollup -c -w"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0"
},
"dependencies": {
"memoize-one": "^5.0.0",
"prop-types": "^15.6.2"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-external-helpers": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^9.1.3",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.2",
"babel-jest": "^24.0.0",
"cross-env": "^5.2.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.3.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"jest": "^24.0.0",
"npm-run-all": "^4.1.3",
"postcss-cli": "^6.0.0",
"prettier": "^1.14.2",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-test-renderer": "^16.4.2",
"rimraf": "^2.0.0",
"rollup": "^1.6.0",
"rollup-plugin-babel": "4",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-node-resolve": "^5.0.1",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^6.0.0"
}
}