forked from openstreetmap/id-tagging-schema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
26 lines (26 loc) · 825 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
{
"type": "module",
"name": "@openstreetmap/id-tagging-schema",
"version": "6.4.0-dev",
"description": "The OpenStreetMap tagging model used by the iD editor",
"homepage": "https://github.com/openstreetmap/id-tagging-schema#readme",
"bugs": "https://github.com/openstreetmap/id-tagging-schema/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/openstreetmap/id-tagging-schema.git"
},
"license": "ISC",
"main": "build.js",
"scripts": {
"lint": "prettier --check data",
"lint:fix": "prettier --write data",
"build": "node scripts/build.js",
"dist": "node scripts/dist.js",
"test": "node scripts/test.js",
"translations": "node scripts/translations.js"
},
"devDependencies": {
"@ideditor/schema-builder": "~6.3.0",
"prettier": "~3.0.0"
}
}