-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
30 lines (30 loc) · 869 Bytes
/
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
{
"name": "mapmap-examples",
"version": "0.1.0",
"description": "A collection of examples for using the mapmap.js library",
"main": "index.js",
"author": "Florian Ledermann",
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/floledermann/mapmap-examples.git"
},
"scripts": {
"build": "cd node_modules/mapmap && browserify src/index.js -s mapmap --ignore d3-dsv -o ../../lib/mapmap.js",
"watch": "cd node_modules/mapmap && watchify src/index.js -s mapmap --debug --verbose -p [ sourcemapify ] --ignore d3-dsv -o ../../lib/mapmap.js"
},
"dependencies": {
"mapmap": "^0.2.3"
},
"devDependencies": {
"browserify": "^10.2.4",
"sourcemapify": "^1.0.0",
"uglify-js": "^2.4.23",
"watchify": "^3.2.3"
},
"browserify": {
"transform": [
"browserify-versionify"
]
}
}