UNPKG

1.98 kBJSONView Raw
1{
2 "name": "all-contributors-cli",
3 "version": "6.20.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.0.1",
47 "chalk": "^4.0.0",
48 "didyoumean": "^1.2.1",
49 "inquirer": "^7.3.3",
50 "json-fixer": "^1.5.1",
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.1.0",
58 "cz-conventional-changelog": "^3.0.0",
59 "git-cz": "^4.1.0",
60 "kcd-scripts": "^6.2.0",
61 "nock": "^12.0.0",
62 "semantic-release": "^17.0.8"
63 },
64 "eslintIgnore": [
65 "node_modules",
66 "coverage",
67 "dist"
68 ],
69 "eslintConfig": {
70 "extends": "./node_modules/kcd-scripts/eslint.js",
71 "rules": {
72 "camelcase": "off",
73 "no-process-exit": "off",
74 "import/extensions": "off",
75 "func-names": "off",
76 "consistent-return": "off"
77 }
78 },
79 "config": {
80 "commitizen": {
81 "path": "cz-conventional-changelog"
82 }
83 }
84}