-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1002 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 1002 Bytes
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
{
"name": "@osmcha/osm-adiff-parser",
"version": "3.1.0",
"description": "Parse OSM augmented diffs to create JSON representation of changesets",
"keywords": [
"openstreetmap",
"osm",
"overpass"
],
"type": "module",
"exports": {
"import": "./index.js",
"require": "./dist/index.cjs"
},
"bin": {
"osm-adiff-parser": "cli.js"
},
"files": [
"dist/*",
"index.js",
"cli.js"
],
"scripts": {
"build": "rollup index.js --external sax --format cjs --file dist/index.cjs",
"prepare": "npm run build",
"test": "tape tests/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OSMCha/osm-adiff-parser.git"
},
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/OSMCha/osm-adiff-parser/issues"
},
"homepage": "https://github.com/OSMCha/osm-adiff-parser#readme",
"dependencies": {
"sax": "^1.4.1"
},
"devDependencies": {
"rollup": "^4.32.0",
"tape": "^5.9.0"
}
}