-
Notifications
You must be signed in to change notification settings - Fork 145
/
package.json
87 lines (87 loc) · 2.01 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
80
81
82
83
84
85
86
87
{
"name": "all-contributors-cli",
"version": "0.0.0-semantically-released",
"description": "Tool to easily add recognition for new contributors",
"bin": {
"all-contributors": "dist/cli.js"
},
"main": "dist/api.js",
"files": [
"dist"
],
"engines": {
"node": ">=4"
},
"scripts": {
"add-contributor": "kcd-scripts contributors add",
"build": "kcd-scripts build",
"lint": "kcd-scripts lint",
"test": "kcd-scripts test",
"validate": "kcd-scripts validate",
"commit": "git-cz",
"start": "./dist/cli.js",
"dev": "./src/cli.js"
},
"husky": {
"hooks": {
"pre-commit": "kcd-scripts pre-commit"
}
},
"repository": {
"type": "git",
"url": "https://github.com/all-contributors/all-contributors-cli.git"
},
"keywords": [
"all-contributors",
"contributors"
],
"author": "Jeroen Engels <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/all-contributors/all-contributors-cli/issues"
},
"homepage": "https://github.com/all-contributors/all-contributors-cli#readme",
"dependencies": {
"@babel/runtime": "^7.7.6",
"async": "^3.1.0",
"chalk": "^4.0.0",
"didyoumean": "^1.2.1",
"inquirer": "^7.3.3",
"json-fixer": "^1.6.8",
"lodash": "^4.11.2",
"node-fetch": "^2.6.0",
"pify": "^5.0.0",
"yargs": "^15.0.1"
},
"devDependencies": {
"codecov": "^3.8.1",
"cz-conventional-changelog": "^3.3.0",
"git-cz": "^4.7.6",
"kcd-scripts": "^6.2.0",
"nock": "^12.0.0",
"semantic-release": "^17.0.8"
},
"optionalDependencies": {
"prettier": "^2"
},
"eslintIgnore": [
"node_modules",
"coverage",
"dist"
],
"eslintConfig": {
"extends": "./node_modules/kcd-scripts/eslint.js",
"rules": {
"camelcase": "off",
"no-process-exit": "off",
"import/extensions": "off",
"func-names": "off",
"consistent-return": "off"
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}