-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.21 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
{
"name": "@humanwhocodes/github-comment",
"version": "0.1.0",
"description": "A CLI for commenting on GitHub issues and pull requests",
"bin": "dist/bin.cjs.js",
"files": [
"dist",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "rollup -c",
"prepublishOnly": "npm run build",
"lint": "eslint src/ tests/",
"test": "npm run lint && mocha -r esm tests/ --recursive"
},
"repository": {
"type": "git",
"url": "git+https://github.com/humanwhocodes/github-comment.git"
},
"bugs": {
"url": "https://github.com/humanwhocodes/github-comment/issues"
},
"homepage": "https://github.com/humanwhocodes/github-comment#readme",
"keywords": [
"GitHub",
"JavaScript"
],
"funding": {
"type": "github",
"url": "https://github.com/sponsors/nzakas"
},
"author": "Nicholas C. Zaks",
"license": "Apache-2.0",
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.16.0",
"esm": "^3.2.25",
"mocha": "^5.2.0",
"nock": "^12.0.3",
"rollup": "^1.20.3",
"rollup-plugin-babel-minify": "^9.0.0"
},
"dependencies": {
"@humanwhocodes/env": "^0.3.1",
"@octokit/rest": "^18.0.0",
"dotenv": "^8.2.0"
}
}