-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.49 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
{
"name": "containerify",
"version": "3.1.1",
"description": "Build node.js docker images without docker",
"main": "./lib/cli.js",
"scripts": {
"prebuild": "node -p \"'export const VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > src/version.ts",
"build": "tsc && chmod ugo+x lib/cli.js",
"lint": "eslint . --ext .ts --fix --ignore-path .gitignore",
"typecheck": "tsc --noEmit",
"watch": "tsc --watch",
"check": "npm run lint && npm run typecheck",
"dev": "tsc --watch",
"integrationTest": "cd tests/integration/ && ./test.sh",
"registryTest": "cd tests/localtest/ && ./test.sh && ./test-insecure.sh",
"allTests": "npm run integrationTest && npm run registryTest"
},
"bin": {
"containerify": "./lib/cli.js"
},
"author": "Erlend Oftedal <[email protected]>",
"contributors": [
"Vegard S. Hagen <[email protected]>"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/eoftedal/containerify.git"
},
"files": [
"lib/"
],
"keywords": [
"docker",
"container",
"image"
],
"dependencies": {
"commander": "^11.0.0",
"fs-extra": "^11.1.0",
"tar": "^6.1.13"
},
"devDependencies": {
"@types/fs-extra": "^11.0.1",
"@types/minizlib": "^2.1.4",
"@types/node": "^18.11.19",
"@types/tar": "^6.1.3",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"prettier": "^2.8.3",
"typescript": "^5.1.6"
}
}