-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
70 lines (70 loc) · 1.64 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
{
"name": "aws-codeartifact",
"version": "0.0.0-semantically-released",
"homepage": "https://github.com/digitalroute/aws-codeartifact",
"repository": {
"type": "git",
"url": "https://github.com/digitalroute/aws-codeartifact.git"
},
"engines": {
"node": ">=10.18.0"
},
"publishConfig": {
"access": "public"
},
"description": "Do AWS CodeArtifact logins",
"main": "src/index.js",
"bin": {
"aws-codeartifact": "src/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\"",
"commit": "git-cz",
"semantic-release": "semantic-release",
"prettier": "prettier --write --list-different \"**/*.{js,ts,json,md,yml}\""
},
"files": [
"src"
],
"devDependencies": {
"@digitalroute/cz-conventional-changelog-for-jira": "^6.3.0",
"@digitalroute/prettier-config": "^1.4.0",
"commitizen": "^4.2.4",
"husky": "^5.1.3",
"lint-staged": "^10.5.4",
"prettier": "^2.0.5",
"semantic-release": "^17.4.2"
},
"keywords": [
"aws",
"codeartifact",
"nodejs",
"npm"
],
"author": "Marcus Johansson <[email protected]>",
"license": "MIT",
"config": {
"commitizen": {
"path": "./node_modules/@digitalroute/cz-conventional-changelog-for-jira",
"jiraMode": false
}
},
"husky": {
"hooks": {
"pre-commit": "npm-run-all --serial lint-staged update-docs"
}
},
"lint-staged": {
"*.{ts,js,json,md,yml}": [
"prettier --write"
]
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm"
]
},
"dependencies": {}
}