-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.79 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.79 KB
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
{
"name": "react-d3-donut",
"version": "1.1.2",
"description": "A react donut chart component using d3",
"main": "lib/index.js",
"module": "es/index.js",
"files": [
"css",
"es",
"lib",
"umd"
],
"scripts": {
"start": "npm-run-all -p build-css start-js",
"start-js": "nwb serve-react-demo",
"build": "npm-run-all build-css build-js",
"build-css": "node-sass-chokidar src/assets/styles/ -o src/assets/styles",
"build-js": "nwb build-react-component --copy-files",
"watch-css": "npm run build-css && node-sass-chokidar src/assets/styles/ -o src/assets/styles --watch --recursive",
"clean": "nwb clean-module && nwb clean-demo",
"prepublishOnly": "npm run build",
"test": "nwb test-react",
"lint": "yarn eslint src",
"test:coverage": "nwb test-react --coverage",
"test:watch": "nwb test-react --server",
"predeploy": "yarn build",
"deploy": "gh-pages -d demo/dist"
},
"peerDependencies": {
"react": "16.x"
},
"devDependencies": {
"babel-eslint": "^9.0.0",
"eslint": "^5.5.0",
"eslint-config-react-app": "^2.1.0",
"eslint-plugin-flowtype": "^2.50.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"gh-pages": "^2.0.0",
"node-sass-chokidar": "^1.3.3",
"npm-run-all": "^4.1.3",
"nwb": "0.23.x",
"nwb-sass": "^0.9.0",
"react": "^16.4.2",
"react-dom": "^16.4.2"
},
"author": "Aviskar KC <[email protected]>",
"license": "MIT",
"repository": "",
"keywords": [
"react-component",
"visualisation",
"donut chart",
"d3"
],
"dependencies": {
"prop-types": "^15.6.2",
"d3-interpolate": "^1.3.2",
"d3-selection": "^1.3.2",
"d3-shape": "^1.2.2",
"d3-transition": "^1.1.3"
}
}