-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.08 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.08 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
{
"name": "build-contract",
"version": "2.1.0",
"description": "Defines a successful build and test run for a microservice, from source to docker push",
"repository": {
"type": "git",
"url": "git+https://github.com/Yolean/build-contract.git"
},
"author": "Yolean AB",
"license": "MIT",
"bugs": {
"url": "https://github.com/Yolean/build-contract/issues"
},
"homepage": "https://github.com/Yolean/build-contract#readme",
"main": "build-contract",
"bin": {
"build-contract": "./build-contract",
"build-contract-predockerbuild": "./nodejs/build-contract-predockerbuild",
"build-contract-packagelock": "./nodejs/build-contract-packagelock"
},
"scripts": {
"unittest": "./node_modules/.bin/jest",
"test": "./build-contract",
"build-contract-predockerbuild": "./nodejs/build-contract-predockerbuild"
},
"engines": {
"node": ">=20.14.0"
},
"dependencies": {
"browserify-zlib": "0.2.0",
"npm": "11.6.4",
"pako": "1.0.6",
"tar-stream": "1.6.1",
"yamljs": "0.2.8"
},
"devDependencies": {
"jest": "27.0.6"
}
}