-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 1.64 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
{
"name": "here-json2geojson",
"version": "0.2.0-SNAPSHOT",
"description": "JavaScript library to covert geo-features encoded in 'HERE JSON' to GeoJSON",
"scripts": {
"dist": "node ./node_modules/mkdirp/bin/cmd.js dist && browserify -g [ babelify --plugins [ transform-es2015-modules-commonjs ] ] -p [ standalonify --name hj2gj --deps [ null ] ] -g [ bubleify ] src/main.js > dist/hj2gj.js",
"doc": "node ./node_modules/documentation/bin/documentation.js readme -s API src/{places.js,routing.js,traffic.js,weather.js} --shallow",
"pretest": "eslint ../src & npm run test-bundle",
"test": "mocha test/test-bundle.js",
"test-bundle": "browserify test/test.js -g [ babelify --plugins [ transform-es2015-modules-commonjs ] ] > test/test-bundle.js",
"posttest": "rm test/test-bundle.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/meggsimum/here-json2geojson.git"
},
"keywords": [
"HERE",
"JSON",
"geometry",
"features",
"GeoJSON",
"converter"
],
"author": "Christian Mayer <[email protected]> (https://meggsimum.de)",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/meggsimum/here-json2geojson/issues"
},
"homepage": "https://github.com/meggsimum/here-json2geojson#readme",
"dependencies": {
},
"devDependencies": {
"babelify": "^8.0.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"browserify": "^15.2.0",
"bubleify": "^1.1.0",
"documentation": "5.3.5",
"eslint": "^4.16.0",
"expect": "^22.1.0",
"mkdirp": "^0.5.1",
"mocha": "^5.0.0",
"should": "^13.2.1",
"standalonify": "^0.1.3"
}
}