-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.02 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
{
"name": "pg-configurator-web",
"private": true,
"version": "0.11.0",
"description": "Browser and Node port of the pg-configurator calculation; the Python package in this repository is the reference implementation",
"type": "module",
"license": "MIT",
"engines": {
"node": ">=18"
},
"main": "./web/index.mjs",
"exports": {
".": "./web/index.mjs",
"./data/rules.json": "./web/data/rules.json",
"./data/pg_settings.json": "./web/data/pg_settings.json",
"./data/input-schema.json": "./web/data/input-schema.json",
"./package.json": "./package.json"
},
"bin": {
"pg-configurator-js": "./web/bin/pg-configurator.mjs"
},
"files": [
"web/index.mjs",
"web/src/cli-args.js",
"web/src/configurator.js",
"web/src/make-conf.js",
"web/src/rule-eval.js",
"web/src/units.js",
"web/data/",
"web/bin/",
"NOTICE"
],
"scripts": {
"test": "node --test web/test/*.test.mjs",
"cli": "node web/bin/pg-configurator.mjs",
"build": "python3 web/build.py"
}
}