-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.23 KB
/
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
42
43
44
45
46
47
{
"engines": {
"node": "^16",
"npm": "^8",
"yarn": "^1.22"
},
"type": "module",
"name": "pve-api",
"version": "0.1.0",
"main": "index.mjs",
"author": "Jeffrey Carpenter <[email protected]>",
"license": "BSD-3-Clause",
"private": false,
"scripts": {
"start": "run-s start:ssl",
"start:nossl": "USE_TLS=0 node --use-openssl-ca index.mjs",
"start:ssl": "node --use-openssl-ca index.mjs",
"test": "run-p test:*",
"test:ssl": "run-s start:ssl",
"test:nossl": "run-s start:nossl",
"lint": "run-p lint:*",
"lint:package": "cat package.json | json_verify -q",
"lint:lib": "exit 0",
"build": "run-s clean; run-s lint; run-p build:*",
"build:cjs": "rollup --format=cjs --file=dist/index.cjs -- index.mjs",
"build:exe": "pkg --compress brotli --output dist/pve-api -t node14-linux --options use-openssl-ca dist/index.cjs",
"clean": "run-p clean:*",
"clean:dist": "rm -v dist/*"
},
"dependencies": {
"dotenv": "16.3.1"
},
"devDependencies": {
"jq": "1.7.2",
"npm-run-all": "4.1.5",
"pkg": "5.8.1",
"rollup": "3.27.0"
},
"files": [
"index.mjs",
"README.md",
"LICENSE.md",
"dist",
"lib",
"tests"
]
}