This repository was archived by the owner on Feb 24, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.24 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 3.24 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "cap-showcase",
"version": "0.1.0",
"description": "React visualization components with Leaflet, dc.js, d3.js",
"main": "lib/index.js",
"scripts": {
"clean:lib": "rm -Rf ./lib",
"compile:lib": "babel src --out-dir lib",
"build:lib": "npm run clean:lib && npm run compile:lib",
"build:dist": "webpack --progress",
"build": "npm run build:lib && npm run build:dist",
"start": "npm run test && npm run build",
"example:dev": "webpack-dev-server --config ./example/webpack.config.dev.babel.js",
"example:dist": "rm -Rf ./dist-example && NODE_ENV=production webpack --config ./example/webpack.config.prod.babel.js",
"test": "ava",
"test:watch": "ava --watch"
},
"repository": {
"type": "git"
},
"keywords": [
"react-component",
"react"
],
"author": "",
"license": "",
"dependencies": {
"axios": "^0.15.2",
"d3-tip": "0.7.1",
"leaflet": "1.0.1",
"leaflet.markercluster": "1.0.0",
"lodash": "^4.0.0",
"react-leaflet": "1.0.0-rc.1",
"react-sizeme": "2.2.0",
"topojson": "1.6.27"
},
"peerDependencies": {
"react": "^15.0.0",
"react-dom": "^15.0.0"
},
"devDependencies": {
"ava": "^0.16.0",
"babel-cli": "^6.10.1",
"babel-core": "^6.10.4",
"babel-eslint": "^7.1.0",
"babel-loader": "^6.2.4",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-lodash": "^3.2.9",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-async-to-generator": "^6.16.0",
"babel-plugin-transform-proto-to-assign": "^6.9.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.18.0",
"browser-env": "^2.0.14",
"crossfilter2": "^1.3.14",
"css-loader": "^0.25.0",
"d3": "3.5.17",
"dc": "2.1.3",
"eslint": "^3.5.0",
"eslint-config-standard": "^6.0.1",
"eslint-config-standard-jsx": "^3.0.1",
"eslint-config-standard-react": "^4.0.2",
"eslint-plugin-async-await": "0.0.0",
"eslint-plugin-promise": "^3.3.0",
"eslint-plugin-react": "^6.3.0",
"eslint-plugin-standard": "^2.0.0",
"extract-text-webpack-plugin": "^1.0.1",
"freezer-js": "0.11.2",
"html-webpack-plugin": "^2.28.0",
"jsdom": "^9.8.3",
"json-loader": "^0.5.4",
"lodash-webpack-plugin": "^0.10.5",
"moment": "^2.15.2",
"moment-range": "^2.2.0",
"nodemon": "^1.11.0",
"react": "^15.3.2",
"react-addons-test-utils": "^15.3.2",
"react-dom": "^15.3.2",
"react-hot-loader": "^3.0.0-beta.6",
"reductio": "^0.6.3",
"sinon": "^1.17.6",
"style-loader": "^0.13.1",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.16.1"
},
"ava": {
"babel": "inherit",
"files": ["example/**/*test.js", "src/**/*test.js"],
"require": [
"babel-register",
"babel-polyfill",
"./test/setup-test-env.js"
]
}
}