-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
36 lines (36 loc) · 954 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
{
"type": "module",
"name": "@ideditor/schema-builder",
"version": "7.0.0-dev",
"description": "Framework for defining iD-compatible tagging models",
"homepage": "https://github.com/ideditor/schema-builder#readme",
"bugs": "https://github.com/ideditor/schema-builder/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/ideditor/schema-builder.git"
},
"license": "ISC",
"exports": "./lib/index.js",
"dependencies": {
"@transifex/api": "^7.1.0",
"chalk": "^5.0.1",
"glob": "^10.1.0",
"js-yaml": "^4.0.0",
"jsonschema": "^1.1.0",
"marky": "^1.2.4",
"node-fetch": "^3.2.10",
"shelljs": "^0.8.0"
},
"devDependencies": {
"eslint": "^9.0.0",
"jest": "^29.1.1"
},
"engines": {
"node": ">=18"
},
"scripts": {
"lint": "eslint lib",
"lint:fix": "eslint lib --fix",
"test": "NODE_OPTIONS=--experimental-vm-modules jest schema-builder.test.js"
}
}