-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.87 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
{
"name": "duplitect",
"version": "2.0.1",
"description": "Package Duplicate Detector",
"main": "index.js",
"bin": "index.js",
"scripts": {
"test": "ava --verbose",
"lint": "eslint --ignore-path .gitignore '**/*.js'",
"fmt": "prettier --write --ignore-path .gitignore '**/*.js'",
"release": "standard-version",
"update": "yarn upgrade-interactive --latest",
"reset": "git clean -dfx && yarn",
"postrelease": "git push --follow-tags; npm publish"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/untool/duplitect.git"
},
"author": "dmbch",
"license": "MIT",
"bugs": {
"url": "https://github.com/untool/duplitect/issues"
},
"homepage": "https://github.com/untool/duplitect#readme",
"devDependencies": {
"@commitlint/cli": "^9.0.0",
"@commitlint/config-conventional": "^9.0.0",
"@commitlint/travis-cli": "^9.0.0",
"@untool/eslint-config": "^1.0.0",
"@untool/prettier-config": "^1.0.0",
"ava": "^2",
"cz-conventional-changelog": "^3.0.0",
"eslint": "^7.0.0",
"husky": "^4.0.0",
"lint-staged": "^10.0.0",
"prettier": "^1.13.4",
"standard-version": "^9.0.0"
},
"renovate": {
"extends": [
"@untool/renovate-config:base"
]
},
"prettier": "@untool/prettier-config",
"eslintConfig": {
"extends": "@untool/eslint-config"
},
"lint-staged": {
"*.js": [
"prettier --write"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"scope-empty": [
2,
"always"
]
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $GIT_PARAMS",
"pre-commit": "lint-staged"
}
}
}