1 | {
|
2 | "name": "all-contributors-cli",
|
3 | "version": "6.26.1",
|
4 | "description": "Tool to easily add recognition for new contributors",
|
5 | "bin": {
|
6 | "all-contributors": "dist/cli.js"
|
7 | },
|
8 | "main": "dist/api.js",
|
9 | "files": [
|
10 | "dist"
|
11 | ],
|
12 | "engines": {
|
13 | "node": ">=4"
|
14 | },
|
15 | "scripts": {
|
16 | "add-contributor": "kcd-scripts contributors add",
|
17 | "build": "kcd-scripts build",
|
18 | "lint": "kcd-scripts lint",
|
19 | "test": "kcd-scripts test",
|
20 | "validate": "kcd-scripts validate",
|
21 | "commit": "git-cz",
|
22 | "start": "./dist/cli.js",
|
23 | "dev": "./src/cli.js"
|
24 | },
|
25 | "husky": {
|
26 | "hooks": {
|
27 | "pre-commit": "kcd-scripts pre-commit"
|
28 | }
|
29 | },
|
30 | "repository": {
|
31 | "type": "git",
|
32 | "url": "https://github.com/all-contributors/all-contributors-cli.git"
|
33 | },
|
34 | "keywords": [
|
35 | "all-contributors",
|
36 | "contributors"
|
37 | ],
|
38 | "author": "Jeroen Engels <jfm.engels@gmail.com>",
|
39 | "license": "MIT",
|
40 | "bugs": {
|
41 | "url": "https://github.com/all-contributors/all-contributors-cli/issues"
|
42 | },
|
43 | "homepage": "https://github.com/all-contributors/all-contributors-cli#readme",
|
44 | "dependencies": {
|
45 | "@babel/runtime": "^7.7.6",
|
46 | "async": "^3.1.0",
|
47 | "chalk": "^4.0.0",
|
48 | "didyoumean": "^1.2.1",
|
49 | "inquirer": "^7.3.3",
|
50 | "json-fixer": "^1.6.8",
|
51 | "lodash": "^4.11.2",
|
52 | "node-fetch": "^2.6.0",
|
53 | "pify": "^5.0.0",
|
54 | "yargs": "^15.0.1"
|
55 | },
|
56 | "devDependencies": {
|
57 | "codecov": "^3.8.1",
|
58 | "cz-conventional-changelog": "^3.3.0",
|
59 | "git-cz": "^4.7.6",
|
60 | "kcd-scripts": "^6.2.0",
|
61 | "nock": "^12.0.0",
|
62 | "semantic-release": "^17.0.8"
|
63 | },
|
64 | "optionalDependencies": {
|
65 | "prettier": "^2"
|
66 | },
|
67 | "eslintIgnore": [
|
68 | "node_modules",
|
69 | "coverage",
|
70 | "dist"
|
71 | ],
|
72 | "eslintConfig": {
|
73 | "extends": "./node_modules/kcd-scripts/eslint.js",
|
74 | "rules": {
|
75 | "camelcase": "off",
|
76 | "no-process-exit": "off",
|
77 | "import/extensions": "off",
|
78 | "func-names": "off",
|
79 | "consistent-return": "off"
|
80 | }
|
81 | },
|
82 | "config": {
|
83 | "commitizen": {
|
84 | "path": "cz-conventional-changelog"
|
85 | }
|
86 | }
|
87 | }
|