-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.55 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
{
"name": "osm-tag-extract",
"version": "0.1.0",
"description": "Tool to extract tag metadata from OpenStreetMap data exports",
"main": "./src/index.ts",
"dependencies": {
"@types/highland": "^2.10.8",
"highland": "^2.13.0",
"osmium": "^0.5.6",
"typescript": "4.1.3"
},
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/mocha": "^5.2.0",
"@types/node": "^8.0.0",
"array-cartesian-product": "^1.0.2",
"array-permutation": "^0.2.0",
"chai": "^4.1.2",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-typescript": "^0.11.0",
"mocha": "^5.1.1",
"through2": "^2.0.3",
"ts-node": "^6.0.0",
"tslint": "^5.9.1",
"typescript-eslint-parser": "^15.0.0"
},
"scripts": {
"clean": "rm -rf build; rm -rf node_modules",
"lint": "tslint -c tslint.json './src/**/*.ts' 'test/**/*.ts'",
"test": "mocha -r ts-node/register \"test/**/*.spec.ts\"",
"test:watch": "mocha -r ts-node/register --watch \"test/**/*.spec.ts\" --watch-extensions ts",
"tag-extract": "tsc -p ./ && node build/src/index.js"
},
"repository": {
"type": "git",
"url": "[email protected]:tagdynamics-org/osm-extract-tags.git"
},
"keywords": [
"openstreetmap", "osm", "tags", "export", "metadata-extraction", "tool", "data"
],
"author": "Matias Dahl",
"license": "MIT",
"bugs": {
"url": "https://github.com/tagdynamics-org/osm-extract-tags/issues"
},
"homepage": "https://github.com/tagdynamics-org/osm-extract-tags#README.md"
}