-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.3 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
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
{
"name": "@vanioinformatika/docker-publish",
"version": "2.1.2",
"description": "Simple Docker tagging and publishing from npm",
"author": "István Pató <istvan.pato@gmail.com>",
"license": "MIT",
"main": "bin/index.js",
"scripts": {
"lint": "standard --verbose \"test/**/*.js\" \"bin/**/*.js\" | snazzy",
"test": "mocha",
"preversion": "git push && npm test",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "https://github.com/vanioinformatika/docker-publish.git"
},
"bugs": {
"url": "https://github.com/vanioinformatika/docker-publish/issues"
},
"keywords": [
"npm",
"version",
"docker",
"tag",
"tags",
"pull",
"push",
"publish"
],
"dependencies": {
"debug": "^4.1.1",
"shelljs": "^0.8.3"
},
"devDependencies": {
"chai": "^4.2.0",
"husky": "^3.0.9",
"mocha": "^6.2.2",
"snazzy": "^8.0.0",
"standard": "^14.3.1"
},
"bin": {
"docker-publish": "bin/index.js"
},
"engines": {
"node": ">=8.0.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm test"
}
},
"standard": {
"global": [
"__basedir",
"describe",
"it",
"before",
"after"
],
"ignore": [
"node_modules"
]
}
}