-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 3 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
{
"name": "nlgamap",
"description": "JavaScript library for creating interactive thematic maps based on Leaflet.",
"version": "1.1.4",
"author": "Thomas Hurtig",
"license": "BSD-3-Clause",
"private": true,
"browserslist": "last 2 major versions, iOS >= 9.2, Android >= 4.1",
"scripts": {
"start": "webpack-dev-server --disable-host-check --config webpack.dev.js --open chrome",
"test": "karma start",
"docs": "esdoc -c esdoc.json && npm run replace-version-string-docs",
"build": "webpack --config webpack.build.js",
"test-build": "webpack --config webpack.build.js -o dev/NLGAMap.test.min.js",
"build-dist": "npm run docs && npm run zip-dist && npm run create-htaccess",
"zip-dist": "cd dist && bestzip ../manual/NLGAMap_%npm_package_version%.zip *.js",
"replace-version-string-docs": "replace \"%VERSION%\" \"%npm_package_version%\" manual/index.html manual/manual -r --include=\"*.html\"",
"create-htaccess": "echo RewriteEngine On > manual/.htaccess && echo RewriteRule ^NLGAMap_latest.zip$ NLGAMap_%npm_package_version%.zip [L] >> manual/.htaccess"
},
"dependencies": {
"colorbrewer": "^1.3.0",
"geostats": "^1.7.0",
"innersvg-polyfill": "0.0.2",
"leaflet": "^1.5.1",
"leaflet-fullscreen": "^1.0.2",
"leaflet-piemarker": "github:nlga/leaflet-piemarker",
"lodash": "^4.17.11",
"rainbowvis.js": "^1.0.1",
"topojson-client": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/plugin-syntax-object-rest-spread": "^7.2.0",
"@babel/preset-env": "^7.4.5",
"@babel/runtime": "^7.4.5",
"ajv": "^6.10.0",
"babel-loader": "^8.0.6",
"bestzip": "^2.1.6",
"chai": "~4.2.0",
"css-loader": "^2.1.1",
"esdoc": "^1.1.0",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-inject-script-plugin": "^1.0.0",
"esdoc-plugin-transform-html": "^1.0.0",
"esdoc-standard-plugin": "^1.0.0",
"file-loader": "^4.0.0",
"karma": "~4.1.0",
"karma-chai": "~0.1.0",
"karma-chrome-launcher": "~2.2.0",
"karma-firefox-launcher": "~1.1.0",
"karma-ie-launcher": "~1.0.0",
"karma-mocha": "~1.3.0",
"karma-mocha-reporter": "~2.2.5",
"karma-phantomjs-launcher": "~1.0.4",
"karma-sinon": "~1.0.5",
"karma-webpack": "^4.0.2",
"mocha": "~6.1.4",
"replace": "^1.1.0",
"sinon": "~7.3.2",
"style-loader": "^0.23.1",
"uglify-save-license": "^0.4.1",
"uglifyjs-webpack-plugin": "^2.1.3",
"underscore-template-loader": "^1.0.0",
"url-loader": "^2.0.1",
"webpack": "^4.35.2",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.5",
"webpack-dev-middleware": "^3.7.0",
"webpack-dev-server": "^3.7.2",
"webpack-merge": "^4.2.1"
}
}