-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
64 lines (64 loc) · 1.65 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "dockerfile-x",
"version": "1.4.2",
"main": "dist/index.js",
"license": "MIT",
"dependencies": {
"@grpc/grpc-js": "^1.9.2",
"@grpc/proto-loader": "^0.7.9",
"axios": "^1.5.0",
"commander": "^11.0.0",
"docker-file-parser": "^1.0.7"
},
"repository": "https://codeberg.org/devthefuture/dockerfile-x",
"devDependencies": {
"@vercel/ncc": "^0.36.1",
"chai": "^4.3.8",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-prettier": "^5.0.0",
"glob": "^10.3.4",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"mocha": "^10.2.0",
"mocha-snap": "^5.0.0",
"pkg": "^5.8.1",
"prettier": "^3.0.3",
"standard-version": "^9.5.0"
},
"scripts": {
"test": "mocha",
"test:update": "mocha --update",
"lint": "eslint .",
"prepack": "yarn build:ncc",
"build": "yarn build:ncc && yarn build:pkg",
"build:ncc": "rm -rf dist && ncc build",
"build:pkg": "pkg -t node18-linuxstatic-x64 -o ./dist-bin/dockerfile-x --compress=GZip ./dist/index.js",
"precommit": "lint-staged",
"prepare": "husky install",
"release": "standard-version",
"push": "git push -f --follow-tags origin master",
"delivery": "yarn release && yarn push && npm publish && make docker-push"
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": [
"dist/",
"bin/dockerfile-x",
"README.md",
"LICENSE"
],
"bin": "bin/dockerfile-x",
"packageManager": "[email protected]"
}