-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.17 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
{
"name": "@amille/semantic-release-plugins",
"version": "0.0.0-development",
"description": "bunch of custom plugins for semantic-release",
"scripts": {
"lint": "eslint --ignore-path .gitignore --ignore-pattern \"!**/.*\" .",
"lint:fix": "npm run lint -- --fix",
"lint:commit": "commitlint",
"lint:commit:ci": "commitlint-circle",
"release": "semantic-release"
},
"repository": "github:amille44420/semantic-release-plugins",
"keywords": [
"helm",
"semantic-release",
"docker"
],
"author": "Adrien Mille <adrien.mille.aer@gmail.com>",
"license": "MIT",
"bugs": "https://github.com/amille44420/semantic-release-plugins/issues",
"homepage": "https://github.com/amille44420/semantic-release-plugins",
"devDependencies": {
"@amille/eslint-config": "^1.3.5",
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"commitlint": "^12.1.1",
"commitlint-circle": "^1.0.0",
"eslint": "^7.0.0",
"prettier": "^2.0.5",
"semantic-release": "^17.0.7"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"glob": "^7.1.6",
"js-yaml": "^3.13.1",
"jszip": "^3.4.0"
}
}