-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1019 Bytes
/
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
{
"name": "alpine-apk",
"version": "2.0.1",
"description": "access to alpine package manager",
"module": "index.js",
"scripts": {
"prepublishOnly": "tsc",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adamburgess/alpine-apk.git"
},
"type": "module",
"keywords": [
"apk",
"alpine",
"package",
"manager"
],
"engines": {
"node": ">=18"
},
"types": "index.d.ts",
"author": "Adam Burgess",
"license": "MIT",
"bugs": {
"url": "https://github.com/adamburgess/alpine-apk/issues"
},
"homepage": "https://github.com/adamburgess/alpine-apk#readme",
"devDependencies": {
"@eslint/js": "^9.11.1",
"@types/chai": "^5.0.0",
"@types/mocha": "^10.0.8",
"@types/node": "^20.16.10",
"@types/tar-stream": "^3.1.3",
"chai": "^5.1.1",
"eslint": "^9.11.1",
"mocha": "^10.7.3",
"typescript": "^5.6.2",
"typescript-eslint": "8.8.0"
},
"dependencies": {
"tar-stream": "^3.1.4"
}
}