-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.29 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.29 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
{
"name": "react-webmap",
"version": "0.2.0",
"license": "MIT",
"author": "Yusuke Nunokawa <ynunokawa.dev@gmail.com>",
"description": "Web Mapping Framework for React.",
"keywords": [
"arcgis",
"leaflet",
"d3",
"react",
"visualization",
"chart",
"es6",
"babel"
],
"repository": {
"type": "git",
"url": "https://github.com/ynunokawa/react-webmap.git"
},
"bugs": {
"url": "https://github.com/ynunokawa/react-webmap/issues/new"
},
"main": "index.js",
"dependencies": {
"d3-array": "^1.0.1",
"d3-collection": "^1.0.1",
"d3-color": "^1.0.1",
"d3-hierarchy": "^1.0.2",
"d3-interpolate": "^1.1.1",
"d3-scale": "^1.0.3",
"d3-shape": "^1.0.2",
"deep-equal": "^1.0.1",
"esri-leaflet": "^2.0.3",
"esri-leaflet-webmap": "^0.4.0",
"global": "^4.3.0",
"leaflet": "^0.7.7",
"rc-slider": "^5.1.1",
"react-bootstrap": "^0.30.3",
"react-bootstrap-switch": "^15.0.0",
"react-motion": "^0.4.4",
"react-vis": "^0.6.2",
"turf": "^3.0.14",
"warning": "^2.1.0"
},
"devDependencies": {
"babel-cli": "6.5.1",
"babel-eslint": "^5.0.0",
"babel-polyfill": "^6.5.0",
"babel-preset-es2015": "6.5.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"brfs": "^1.4.3",
"browserify": "^13.0.0",
"budo": "^8.0.3",
"enzyme": "^2.3.0",
"eslint": "^1.10.3",
"eslint-plugin-react": "^3.16.1",
"http-server": "^0.9.0",
"node-sass": "^3.4.2",
"react": ">=0.14.0",
"react-addons-shallow-compare": ">=0.14.0",
"react-addons-test-utils": ">=0.14.0",
"react-dom": ">=0.14.0",
"run-browser-babel": "^5.2.0",
"tape": "^4.0.0",
"uglify-js": "^2.6.1",
"watch": "^0.19.2"
},
"peerDependencies": {
"react": "0.14.x - 15.x",
"react-addons-shallow-compare": "0.14.x - 15.x"
},
"scripts": {
"start": "npm run build-docs & http-server docs -p 5000 -c-1 -o",
"build-js": "babel src -d dist --copy-files",
"build-js-example": "npm run build-js -- --source-maps inline",
"build-docs": "(node-sass src/example/main.scss docs/example.css) & (browserify -t brfs ./dist/example/main.js > docs/example.js)",
"build-dev-docs": "(node-sass src/example/main.scss _docs/example.css) & (browserify -t brfs ./dist/example/main.js > _docs/example.js)",
"build-css": "node-sass src/main.scss main.css",
"build-css-example": "node-sass src/example/*.scss -o dist/example/",
"build-example": "npm run build-css-example && npm run build-js-example",
"watch-example": "(npm run build-css-example -- --watch) & (npm run build-js-example -- --watch) &",
"build": "npm run build-js && npm run build-css",
"watch": "npm run build-example && npm run watch-example && (budo dist/example/main.js --live --css dist/example/main.css)",
"lint": "eslint src",
"execute-tests": "run-browser-babel dist/test/index.js --bx react/addons --bx react/lib/ReactContext --bx react/lib/ExecutionEnvironment --phantom",
"test": "npm run build-js && npm run execute-tests",
"cover": "npm run build-js && npm run execute-tests -- --report=text --report=cobertura --report=html --report=json-summary",
"precommit": "npm run lint -s",
"prepublish": "npm run build"
},
"engines": {
"node": "0.10.x",
"npm": "3.x"
}
}