generated from ecelis/ianseo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.18 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
{
"name": "ianseo-docker",
"version": "1.0.0",
"description": "Run ianseo on docker",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 0",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"release:major": "standard-version --release-as major",
"prepare": "husky install",
"ianseo:fetch": "./bin/fetch.sh",
"ianseo:build": "docker build -t arqueria/ianseo .",
"ianseo:build:multi": "docker buildx build --platform linux/arm/v7,linux/arm64/v8,linux/amd64 --tag arqueria/ianseo ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/ecelis/ianseo-docker.git"
},
"author": "Ernesto Celis",
"license": "ISC",
"bugs": {
"url": "https://github.com/ecelis/ianseo-docker/issues"
},
"homepage": "https://github.com/ecelis/ianseo-docker#readme",
"devDependencies": {
"husky": "^8.0.0",
"standard-version": "^9.5.0",
"unzipper": "^0.12.3"
},
"dependencies": {
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0"
}
}