This repository was archived by the owner on Jul 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.45 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@balena/multibuild",
"version": "5.1.0",
"description": "Build a docker composition",
"main": "build/index.js",
"files": [
"build/*"
],
"types": "build/index.d.ts",
"scripts": {
"clean": "rimraf -rf build",
"prepublishOnly": "npm run build && npm run lint",
"lint": "balena-lint -e ts --typescript --fix lib typings test",
"build": "npm run build:common && tsc --project tsconfig.publish.json && npm run copy-secrets",
"build:test": "npm run build:common && tsc --project . && npm run copy-secrets:test",
"build:common": "npm run clean && npm run lint",
"copy-secrets": "ncp lib/build-secrets build/build-secrets --filter=\"build-secrets($|.Dockerfile.*)\"",
"copy-secrets:test": "ncp lib/build-secrets build/lib/build-secrets --filter=\"build-secrets($|.Dockerfile.*)\"",
"test": "npm run build:test && mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/balena-io-modules/balena-multibuild.git"
},
"author": "Balena Inc. <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/balena-io-modules/balena-multibuild/issues"
},
"homepage": "https://github.com/balena-io-modules/balena-multibuild#readme",
"devDependencies": {
"@balena/lint": "^6.1.1",
"@types/bluebird": "^3.5.32",
"@types/chai-as-promised": "^7.1.3",
"@types/docker-modem": "^3.0.1",
"@types/dockerode": "^2.5.34",
"@types/js-yaml": "^4.0.1",
"@types/lodash": "^4.14.168",
"@types/mocha": "^8.2.2",
"@types/semver": "^7.3.5",
"@types/tar-stream": "^2.2.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"mocha": "^8.3.2",
"ncp": "^2.0.0",
"rimraf": "^3.0.2",
"typescript": "^4.2.4"
},
"dependencies": {
"ajv": "^6.12.3",
"bluebird": "^3.7.2",
"docker-progress": "^5.0.0",
"dockerfile-ast": "^0.2.1",
"dockerfile-template": "^0.2.0",
"dockerode": "^3.3.1",
"fp-ts": "^2.8.1",
"io-ts": "^2.2.9",
"io-ts-reporters": "^1.2.2",
"js-yaml": "^4.1.0",
"lodash": "^4.17.19",
"resin-bundle-resolve": "^4.3.0",
"@balena/compose-parse": "^3.0.0",
"resin-docker-build": "^1.1.5",
"semver": "^7.3.5",
"tar-stream": "^2.1.3",
"tar-utils": "^2.1.0",
"typed-error": "^3.2.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"versionist": {
"publishedAt": "2021-10-28T13:12:17.320Z"
}
}