-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 2.54 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
{
"name": "safe-framework",
"version": "0.0.45",
"description": "Safe Framework",
"repository": "https://github.com/jeffshaver/safe-framework",
"main": "./lib",
"scripts": {
"build": "babel ./src --out-dir ./lib",
"build:examples": "npm run build && npm run copy:lib && npm run copy:dist",
"bump:major": "node ./bin/bump.js major --commit --tag",
"bump:minor": "node ./bin/bump.js minor --commit --tag",
"bump:patch": "node ./bin/bump.js patch --commit --tag",
"copy:dist": "mkdir -p examples/node_modules/safe-framework/dist && cp -R dist/* examples/node_modules/safe-framework/dist/",
"copy:lib": "cp -R lib/* examples/node_modules/safe-framework/lib/",
"lint:src": "eslint `find src/ -type f -name '*.js*'`",
"lint:examples": "eslint `find examples/js/ -type f -name '*.js*'`",
"lint": "npm run lint:src && npm run lint:examples",
"prebuild": "rimraf lib",
"prepublish": "npm run test",
"test": "npm run build && npm run lint"
},
"author": "Jeff Shaver <jeff.e.shaver@gmail.com> (http://jeffshaver.me)",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.13.2",
"babel-eslint": "^6.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-dev-warning": "^0.1.0",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-runtime": "^6.11.6",
"eslint": "^3.3.1",
"eslint-config-standard": "^5.3.5",
"eslint-plugin-promise": "^2.0.1",
"eslint-plugin-react": "^6.1.2",
"eslint-plugin-standard": "^2.0.0",
"gulp": "^3.9.1",
"gulp-shell": "0.5.2",
"json-file-plus": "^3.3.0",
"rimraf": "^2.5.4"
},
"dependencies": {
"Chart.Zoom.drag.js": "^0.2.0",
"ag-grid": "^5.2.0",
"ag-grid-react": "^5.2.0",
"change-case": "^3.0.0",
"chart.js": "^2.2.1",
"chroma-js": "^1.2.1",
"color": "^0.11.1",
"drmonty-leaflet-awesome-markers": "^2.0.2",
"flexboxgrid": "^6.3.1",
"leaflet.markercluster": "^0.5.0",
"lodash.debounce": "^4.0.8",
"matches-selector-polyfill": "^1.0.0",
"numeral": "^1.5.3",
"react-grid-layout": "^0.13.1",
"safe-framework-react-chartjs": "^2.0.0"
},
"peerDependencies": {
"leaflet-fullscreen": "^1.0.1",
"material-ui": "^0.16.5",
"radium": "^0.18.0",
"react": "^15.4.0",
"react-dom": "^15.4.0",
"react-leaflet": "^0.12.1",
"react-tap-event-plugin": "^2.0.0"
}
}