generated from 5app/package-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.46 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
{
"name": "@5app/semantic-release-config",
"version": "1.1.0",
"description": "Semantic Release shareable config",
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"lint": "eslint ./",
"lint-fix": "npm run lint -- --fix",
"lint-diff": "LIST=`git diff-index --name-only HEAD | grep '.*\\.js$';`; if [ \"$LIST\" ]; then eslint $LIST; fi",
"precommit-msg": "echo 'Running pre-commit checks... (skip using --no-verify)'",
"test": "npm run lint",
"prepare": "is-ci || husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/5app/semantic-release-config.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/5app/semantic-release-config/issues"
},
"homepage": "https://github.com/5app/semantic-release-config#readme",
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"eslint": "^8.23.0",
"eslint-config-5app": "^0.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"is-ci": "^3.0.1",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"semantic-release": "^21.0.0"
},
"dependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1"
},
"publishConfig": {
"access": "public"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"subject-case": [
2,
"never",
[
"start-case",
"pascal-case"
]
]
}
}
}