This repository has been archived by the owner on Nov 19, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
85 lines (85 loc) · 1.99 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
{
"name": "@mocha/contributors",
"version": "0.0.0-development",
"description": "Add & update list of Git contributors in package.json",
"main": "src/index.js",
"scripts": {
"pretest": "eslint .",
"test": "mocha",
"update-readme": "md-magic --config .markdown-magic.config.js",
"travis-deploy-once": "travis-deploy-once",
"semantic-release": "semantic-release"
},
"keywords": [
"author",
"collaborators",
"committers",
"contributor",
"contributors",
"git",
"maintainer",
"maintainers",
"manifest",
"package",
"package.json",
"repo"
],
"author": "Christopher Hiller <[email protected]> (https://boneskull.com/)",
"license": "Apache-2.0",
"bin": {
"contributors": "src/cli.js"
},
"dependencies": {
"log-symbols": "^2.2.0",
"parse-author": "^2.0.0",
"pkg-up": "^2.0.0",
"write-pkg": "^3.2.0",
"yargs": "^12.0.5"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-prettier": "^3.6.0",
"eslint-config-semistandard": "^13.0.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^1.3.1",
"lint-staged": "^8.1.7",
"markdown-magic": "^0.1.25",
"markdown-magic-jsdoc": "^1.0.1",
"mocha": "^5.2.0",
"prettier-eslint-cli": "^4.7.1",
"semantic-release": "^15.13.15",
"sinon": "^7.3.2",
"unexpected": "^10.40.2",
"unexpected-sinon": "^10.11.2"
},
"repository": {
"type": "git",
"url": "https://github.com/mochajs/contributors.git"
},
"files": [
"src"
],
"lint-staged": {
"*.{js}": [
"prettier-eslint --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"prettier": {
"singleQuote": true,
"bracketSpacing": false
},
"publishConfig": {
"access": "public"
}
}