forked from tilemill-project/tilemill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.2 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
{
"name": "tilemill",
"version": "0.9.0",
"main": "./index.js",
"description": "A modern map design studio.",
"keywords": ["map", "design", "cartography"],
"url": "http://github.com/developmentseed/tilemill",
"repository": {
"type": "git",
"url": "git://github.com/mapbox/tilemill.git"
},
"contributors": [
"Tom MacWright <tmcw>",
"Konstantin Kaefer <kkaefer>",
"Will White <willwhite>",
"Dane Springmeyer <springmeyer>",
"Dmitri Gaskin <dmitrig01>",
"AJ Ashton <ajashton>",
"Tristen Brown <tristen>",
"Young Hahn <yhahn>"
],
"licenses": [{ "type": "BSD" }],
"dependencies": {
"backbone-dirty": "1.1.x",
"bones": "~1.3.24",
"chrono": "~1.0.1",
"JSV": "3.5.x",
"mbtiles": "~0.2.0",
"sax": "0.1.x",
"request": "~2.9.153",
"step": "~0.0.5",
"tilelive": "https://github.com/mapbox/tilelive.js/tarball/master",
"mapnik": "https://github.com/mapnik/node-mapnik/tarball/master",
"millstone": "~0.4.0",
"sphericalmercator": "~1.0.1",
"tilelive-mapnik": "~0.3.0",
"underscore": "~1.3.1",
"carto": "~0.4.5",
"wax": "5.0.0-alpha2",
"node-markdown": "0.1.0",
"sqlite3": "~2.1.1",
"passport": "0.1.x",
"passport-oauth": "0.1.x",
"modestmaps": "1.0.0-alpha",
"npm": "1.1.x",
"semver": "1.0.x",
"optimist": "~0.3.1",
"topcube": "https://github.com/creationix/topcube/tarball/v0.1.2",
"mkdirp": "~0.3.0"
},
"devDependencies": {
"jshint": "0.2.x"
},
"scripts": {
"start": "./index.js",
"test": "expresso",
"postinstall": "GITPATH=/usr/bin:/usr/local/bin:/usr/local/git/bin\nPATH=$PATH:$GITPATH; export PATH\n\nif [ -z $( which git ) ]; then\n echo \"Unable to find git binary in \\$GITPATH\"\n exit 1\nfi\n\nSHORT_VERSION=$( git describe --tags )\nVERSION=$( echo $SHORT_VERSION | sed -e 's/^v//' | sed -e 's/-/./' | sed -e 's/-.*//' )\n\necho \"$SHORT_VERSION\n$VERSION\" > VERSION"
},
"bin": {
"tilemill": "./index.js"
},
"engines": { "node": "0.6.x" }
}