-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.8 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
{
"name": "regioviz",
"version": "0.1.0",
"description": "Statistical exploration tool to compare new French regions in a European context.",
"license": "CECILL-2.1",
"repository": {
"type": "git",
"url": "https://github.com/mthh/rgvzfra.git"
},
"author": {
"name": "Matthieu Viry",
"email": "[email protected]"
},
"devDependencies": {
"autoprefixer": "^7.2.2",
"babel-core": "latest",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "latest",
"cssnano": "^3.10.0",
"eslint": "^4.13.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"jsep": "^0.3.3",
"rollup": "0.52.1",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-eslint": "^4.0.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-postcss": "^0.4.3",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-serve": "^0.4.2",
"rollup-plugin-uglify": "^3.0.0",
"rollup-plugin-url": "^1.3.0",
"rollup-watch": "^4.3.1",
"sillyname": "^0.1.0"
},
"dependencies": {
"@turf/bbox": "6.0.1",
"@turf/centroid": "^5.1.5",
"alertifyjs": "^1.11.0",
"babel-polyfill": "^6.26.0",
"debug": "^2.6.6",
"intro.js": "^2.8.0-alpha.1",
"jsep": "^0.3.3",
"tingle.js": "^0.12.0",
"tippy.js": "^2.0.4"
},
"scripts": {
"prepublish": "rm -rf build/* && cp src/index.html build/ && cp -r src/img/ build/img/ && cp -r src/data* build/ && cp -r src/vendor/ build/vendor/ && cp src/img/favicon.ico build/favicon.ico",
"build": "npm run prepublish && ./node_modules/rollup/bin/rollup -c",
"watch": "npm run prepublish && ./node_modules/rollup/bin/rollup -c -w",
"dev": "npm run prepublish && ./node_modules/rollup/bin/rollup -c -w --environment SERVE"
}
}