-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 969 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
{
"name": "@osmcha/osmchange-parser",
"version": "1.0.0",
"description": "Parse OpenStreetMap OsmChange XML documents",
"type": "module",
"exports": {
"import": "./index.js",
"require": "./dist/index.cjs"
},
"files": [
"dist/*",
"index.js"
],
"scripts": {
"build": "rollup index.js --external sax --format cjs --file dist/index.cjs",
"prepare": "npm run build && npm run test",
"test": "tape tests/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OSMCha/osmchange-parser.git"
},
"keywords": [
"openstreetmap",
"osm",
"changeset"
],
"author": "Jake Low <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/OSMCha/osmchange-parser/issues"
},
"homepage": "https://github.com/OSMCha/osmchange-parser#readme",
"dependencies": {
"sax": "^1.4.1"
},
"devDependencies": {
"rollup": "^4.21.2",
"tape": "^5.8.1"
}
}