-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.94 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.94 KB
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
74
75
{
"name": "mappy",
"engines": {
"node": "0.10.32"
},
"version": "1.0.0",
"description": "A configurable map engine",
"main": "index.js",
"scripts": {
"test:ci": "npm run jshint && mocha -u mocha-given -R spec --compilers js:6to5/register test/**/*.spec.js",
"test:dev": "testem -g",
"test": "npm run test:dev",
"build:prod": "buildbro --es6 --minifyglobal --brfs --jshint ./index.js ./dist/bundle-min.js",
"build:dev": "buildbro --es6 --debug --brfs --jshint ./index.js ./dist/bundle.js",
"build:watch": "buildbro -w -e -d -b -s dist -p 3000 -j ./index.js ./dist/bundle.js",
"build:all": "npm run build:dev && npm run build:prod",
"build": "npm run build:all",
"jshint": "jshint .",
"start": "npm run build:watch"
},
"repository": {
"type": "git",
"url": ""
},
"keywords": [
"map engine",
"mappy",
"geojson"
],
"author": "Richard Walker <digitalsadhu@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mediasuitenz/mappy/issues"
},
"homepage": "https://github.com/mediasuitenz/mappy",
"devDependencies": {
"6to5": "2.12.6",
"catch-error": "1.0.0",
"chai": "1.9.1",
"geojson-is-valid": "0.0.4",
"geojsonhint": "0.3.4",
"jshint": "2.5.5",
"mocha": "1.21.4",
"mocha-given": "0.1.3",
"rewire": "2.1.0",
"sinon": "1.10.3",
"sinon-chai": "2.5.0",
"testem": "0.6.19"
},
"dependencies": {
"6to5ify": "3.1.2",
"brfs": "1.2.0",
"buildbro": "0.1.3",
"commander": "2.3.0",
"events": "1.0.2",
"foreach": "2.0.5",
"handlebars": "2.0.0",
"insert-css": "0.2.0",
"leaflet": "1.0.3",
"leaflet.gridlayer.googlemutant": "0.4.3",
"leaflet.markercluster": "1.0.3",
"merge": "1.2.0",
"moment": "2.8.3",
"nevernull": "0.0.9",
"object-merge": "2.5.1",
"persuasion": "1.0.1",
"xhr": "2.0.0"
},
"browserify": {
"transform": [
"6to5ify",
"brfs"
]
}
}