-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.68 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.68 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "dockerfile-x",
"version": "1.5.3",
"main": "dist/index.js",
"license": "MIT",
"dependencies": {
"@grpc/grpc-js": "^1.13.4",
"@grpc/proto-loader": "^0.8.0",
"axios": "^1.11.0",
"commander": "^14.0.0",
"docker-file-parser": "^1.0.7",
"dotenv": "^17.2.1"
},
"repository": "https://codeberg.org/devthefuture/dockerfile-x",
"devDependencies": {
"@vercel/ncc": "^0.38.3",
"chai": "^6.0.1",
"eslint": "^9.34.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-mocha": "^11.1.0",
"eslint-plugin-prettier": "^5.5.4",
"glob": "^11.0.3",
"husky": "^9.1.7",
"lint-staged": "^16.1.5",
"mocha": "^11.7.1",
"mocha-snap": "^5.0.0",
"pkg": "^5.8.1",
"prettier": "^3.6.2",
"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": "yarn@3.6.3"
}