-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 980 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
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "osmdown",
"version": "1.0.2",
"description": "A markdown parser for OSM Markdown",
"main": "./lib/index.js",
"scripts": {
"test": "./node_modules/mocha/bin/mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/jenningsanderson/osmdown.git"
},
"keywords": [
"OpenStreetMap",
"OSM",
"Markdown"
],
"preferGlobal": "true",
"bin": {
"osmdown": "bin/osmdown"
},
"author": "Jennings Anderson, Robert Soden",
"license": "MIT",
"bugs": {
"url": "https://github.com/jenningsanderson/osmdown/issues"
},
"homepage": "https://github.com/jenningsanderson/osmdown",
"devDependencies": {
"mocha": "^2.1.0",
"should": "^5.0.0"
},
"dependencies": {
"bluebird": "^2.9.14",
"code-context": "^0.5.0",
"commander": "^2.7.1",
"js-yaml": "^3.2.7",
"liquid-node": "^2.4.0",
"lodash": "^3.6.0",
"marked": "^0.3.3",
"mustache": "^2.0.0",
"numeral": "^1.5.3"
}
}