-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.3 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.3 KB
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
{
"name": "@getbindu/regulations",
"version": "0.1.0",
"private": true,
"description": "An open, machine-evaluable encoding of trade and product compliance regulations.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/GetBindu/regulations.git"
},
"homepage": "https://github.com/GetBindu/regulations#readme",
"bugs": {
"url": "https://github.com/GetBindu/regulations/issues"
},
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"validate": "node tools/validate_dmn.mjs",
"validate:fixtures": "node tools/validate_fixtures.mjs",
"test": "node tools/run_tests.mjs",
"lint": "node tools/lint_layout.mjs",
"lint:conditions": "node tools/lint_conditions.mjs",
"coverage": "node tools/coverage.mjs",
"db:migrate": "node taric/db/migrate.mjs",
"sync:cellar": "node taric/sync/cellar_poll.mjs",
"sync:daily": "node taric/sync/taric_daily.mjs",
"check": "npm run validate && npm run validate:fixtures && npm run test && npm run lint && npm run lint:conditions"
},
"dependencies": {
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"csv-parse": "^6.2.1",
"dotenv": "^17.4.2",
"js-yaml": "^4.1.0",
"pg": "^8.20.0",
"playwright": "^1.59.1",
"xlsx": "^0.18.5",
"yauzl": "^3.3.0"
}
}