-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
76 lines (76 loc) · 2.1 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
{
"name": "react-svg-piechart",
"version": "2.4.2",
"author": {
"name": "Cédric Delpoux",
"email": "cedric.delpoux@gmail.com"
},
"description": "A lightweight responsive pie chart component for React using only SVG",
"files": [
"es",
"lib",
"umd"
],
"homepage": "https://github.com/cedricdelpoux/react-svg-piechart#readme",
"keywords": [
"react",
"pie",
"chart",
"piechart",
"responsive",
"svg"
],
"license": "MIT",
"main": "lib/index.js",
"module": "es/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/cedricdelpoux/react-svg-piechart.git"
},
"scripts": {
"build": "nwb build-react-component",
"clean": "nwb clean-module && nwb clean-demo",
"deploy": "gh-pages -d demo/dist",
"lint": "eslint src demo/src",
"precommit": "lint-staged",
"prepublishOnly": "yarn run clean && yarn run build",
"start": "nwb serve-react-demo --port 1190",
"test": "jest --config jest.config.json --coverage --colors --no-cache",
"test:watch": "yarn test -- --watch"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"gh-pages": "^3.1.0",
"html-loader": "^1.3.2",
"husky": "^4.3.0",
"jest": "^26.6.3",
"jest-css-modules": "^2.1.0",
"lint-staged": "^10.5.1",
"markdown-loader": "^6.0.0",
"nwb": "^0.25.2",
"prettier": "^2.1.2",
"prop-types": "^15.6.0",
"raf": "^3.4.0",
"react": "^16.0.1",
"react-demo-page": "^0.3.6",
"react-dom": "^16.0.1",
"react-test-renderer": "^17.0.1"
},
"peerDependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0"
}
}