-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 1.07 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
{
"name": "docker-progress",
"version": "5.2.3",
"description": "This module provides additional progress mechanics on top of dockerode",
"repository": {
"type": "git",
"url": "[email protected]:balena-io-modules/docker-progress.git"
},
"author": "Balena Ltd. <[email protected]>",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build/"
],
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"clean": "rimraf build",
"build": "npm run clean && npm run lint && tsc",
"lint": "balena-lint lib",
"lint:fix": "balena-lint --fix lib",
"test": "npm run lint && npm run build",
"prepack": "npm run build"
},
"license": "Apache-2.0",
"dependencies": {
"@types/dockerode": "^3.3.23",
"JSONStream": "^1.3.5",
"lodash": "^4.17.21"
},
"devDependencies": {
"@balena/lint": "^7.2.4",
"@types/JSONStream": "npm:@types/jsonstream@^0.8.33",
"@types/lodash": "^4.14.202",
"rimraf": "^5.0.5",
"typescript": "^5.3.3"
},
"versionist": {
"publishedAt": "2024-01-05T17:02:09.961Z"
}
}