-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.05 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
{
"name": "android-template",
"version": "21.1.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "./gradlew ktlint detekt",
"build": "./gradlew clean build",
"test": "./gradlew test",
"release": "standard-version",
"version": "echo $npm_package_version"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"husky": "^4.3.7",
"next-standard-version": "^1.0.1",
"standard-version": "^9.3.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"skipCI": false,
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run lint test build"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/mcauto/android-template.git"
},
"author": "Deo Kim <nexters@kakao.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/mcauto/android-template/issues"
},
"homepage": "https://github.com/mcauto/android-template#readme"
}