-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
42 lines (42 loc) · 1.11 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
{
"name": "mapmap",
"description": "Library for creating maps based on SVG and D3.js in the browser.",
"version": "0.2.8",
"author": "Florian Ledermann",
"license": "AGPL-3.0",
"main": "src/index",
"scripts": {
"build": "npm run browserify",
"test": "mocha",
"browserify-dev": "browserify src/index.js --standalone mapmap --ignore d3-dsv --outfile mapmap.js",
"browserify-production": "browserify src/index.js --standalone mapmap --ignore d3-dsv | uglifyjs > mapmap.min.js",
"browserify": "npm run browserify-dev && npm run browserify-production",
"version": "npm run build && git add mapmap.js mapmap.min.js"
},
"repository": {
"type": "git",
"url": "https://github.com/floledermann/mapmap.js.git"
},
"keywords": [
"maps",
"map",
"SVG",
"D3",
"visualization"
],
"dependencies": {
"datadata": "^0.1.8",
"d3": "^3.5.5"
},
"devDependencies": {
"browserify": "^10.2.4",
"browserify-versionify": "^1.0.4",
"uglify-js": "^2.4.23",
"minifyify": "^7.0.2"
},
"browserify": {
"transform": [
"browserify-versionify"
]
}
}