-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
86 lines (86 loc) · 2.2 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
80
81
82
83
84
85
86
{
"name": "@codedependant/semantic-release-docker",
"private": false,
"version": "5.0.3",
"description": "docker package",
"main": "index.js",
"files": [
"lib/",
"README.md",
"CHANGELOG.md",
"LICENSE",
"package.json",
"index.js"
],
"scripts": {
"test": "docker-compose -f compose/base.yml -f compose/test.yml up --exit-code-from semantic-release --force-recreate --remove-orphans --build",
"start": "docker-compose -f compose/base.yml -f compose/dev.yml up --force-recreate --remove-orphans --build",
"stop": "docker-compose -f compose/base.yml -f compose/dev.yml down",
"tap": "tap",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"local": "env $(cat env/local.env)",
"pretap": "npm run lint",
"release": "semantic-release",
"release:dry": "semantic-release --no-ci --dry-run --branches=${BRANCH_NAME:-main}"
},
"keywords": [
"semantic-release"
],
"author": "Eric Satterwhite <[email protected]>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/esatterwhite/semantic-release-docker.git"
},
"tap": {
"ts": false,
"jsx": false,
"timeout": 60,
"browser": false,
"check-coverage": true,
"lines": 95,
"branches": 95,
"statements": 95,
"functions": 95,
"files": [
"test/unit",
"test/integration"
],
"coverage-report": [
"text",
"text-summary",
"json",
"json-summary",
"html"
],
"nyc-arg": [
"--exclude=coverage/",
"--exclude=test/",
"--exclude=.eslintrc.js",
"--exclude=release.config.js",
"--all"
]
},
"devDependencies": {
"@codedependant/release-config-npm": "^1.0.4",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.0.7",
"eslint": "^8.5.0",
"eslint-config-codedependant": "^3.0.0",
"semantic-release": "17",
"sinon": "^9.0.2",
"tap": "^16.0.0"
},
"dependencies": {
"@semantic-release/error": "^3.0.0",
"debug": "^4.1.1",
"execa": "^4.0.2",
"handlebars": "^4.7.7",
"semver": "^7.3.2"
}
}