forked from GeoNode/geonode-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 3.41 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
{
"name": "geonode-viewer",
"version": "0.0.0",
"scripts": {
"createdir": "node createbuild.js",
"start:debug": "node debug-server.js",
"start": "node_modules/.bin/npm-run-all createdir start:debug",
"build:js": "node_modules/.bin/browserify -s Viewer -g [envify --NODE_ENV production] -p [minifyify --no-map --exclude node_modules/openlayers/dist/ol.js] viewer.jsx -o build/viewer.js",
"build:lib": "node_modules/.bin/browserify -g [envify --NODE_ENV production] -p [minifyify --no-map --exclude node_modules/openlayers/dist/ol.js] geonode.jsx -o build/geonode.js",
"build:lib:debug": "node_modules/.bin/browserify -g [envify --NODE_ENV development] geonode.jsx -o build/geonode-debug.js",
"build:gh-copy": "cp index-gh.html _build/index.html && cp build/app.js _build/js/app.js && cp -r resources/ol3-cesium/* _build/js/cesium/ && cp ./node_modules/boundless-sdk/dist/css/components.css _build/css/component.css && cp app.css _build/css/app.css && cp CNAME _build/CNAME",
"build:gh-clean": "rm -rf _build/* ",
"build:gh-makedir": "mkdir -p _build && mkdir -p _build/js && mkdir -p _build/css && mkdir -p _build/js/cesium",
"build:gh-pages": "npm run build && npm run build:gh-clean && npm run build:gh-makedir && npm run build:gh-copy",
"build": "node_modules/.bin/npm-run-all createdir build:js",
"createzip": "node createpackage.js",
"package": "node_modules/.bin/npm-run-all build createzip",
"test:watch": "node_modules/.bin/mochify --require intl --recursive --watch tests/**/*.test.js",
"test:phantom": "node_modules/.bin/mochify --reporter list --require intl --recursive tests/**/*.test.js",
"test:wd": "node_modules/.bin/mochify --require intl --recursive --wd tests/**/*.test.js",
"test:cover": "node_modules/.bin/mochify --plugin [ mochify-istanbul --report text --report lcovonly --dir ./coverage --exclude **/js/**/*.css --exclude '**/+(tests|helper|node_modules)/**/*' ] --require intl --recursive tests/**/*.test.js",
"test": "npm run test:phantom && npm run test:cover",
"deploy": "npm run build:gh-pages && git-directory-deploy --directory _build --branch gh-pages"
},
"dependencies": {
"boundless-sdk": "^0.9.13",
"material-ui": "0.16.4",
"ol3-cesium": "3.9.4",
"openlayers": "3.19.0",
"react": "^15.4.0",
"react-dom": "^15.4.0",
"react-intl": "2.0.0-rc-1",
"react-tap-event-plugin": "^2.0.0",
"whatwg-fetch": "^1.0.0"
},
"devDependencies": {
"archiver": "0.21.0",
"babel-eslint": "^7.0.0",
"babel-plugin-react-intl": "1.0.0-beta-5",
"babelify": "^6.0.2",
"boundless-sdk-tools": "^0.9.0",
"browserify": "^11.2.0",
"chai": "^3.5.0",
"codeclimate-test-reporter": "^0.4.0",
"cssify": "^0.8.0",
"envify": "^3.4.0",
"eslint": "^3.7.1",
"eslint-plugin-react": "^6.4.1",
"fs-extra": "0.26.2",
"git-directory-deploy": "^1.5.1",
"intl": "^1.2.5",
"minifyify": "^7.1.0",
"mocha": "^3.1.2",
"mochify": "^2.18.1",
"mochify-istanbul": "^2.4.1",
"npm-run-all": "1.3.1",
"phantomjs-polyfill-object-assign": "0.0.2",
"phantomjs-prebuilt": "^2.1.13",
"raf": "^3.3.0",
"react-addons-test-utils": "^15.4.0",
"react-test-renderer": "^15.4.0",
"react-tools": "0.12.0",
"readline": "1.3.0",
"replacestream": "4.0.0",
"through": "^2.3.8",
"watchify": "^3.2.0"
},
"browserify": {
"transform": [
"cssify",
"babelify"
]
}
}