-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 842 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 842 Bytes
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
{
"name": "github-api",
"version": "1.0.0",
"main": "src/index.js",
"bin": {
"github-insights": "./src/index.js"
},
"scripts": {
"start": "node src/index.js",
"stats": "node src/stats.js",
"stats:file": "node src/stats.js file",
"pr": "node src/create-pull-request.js"
},
"license": "MIT",
"dependencies": {
"@octokit/rest": "^16.28.9",
"apollo-boost": "^0.4.4",
"apollo-link-http": "^1.5.16",
"chalk": "^2.4.2",
"dotenv": "^8.1.0",
"glob": "^7.1.4",
"graphql": "^14.5.6",
"graphql-tag": "^2.10.1",
"node-fetch": "^2.6.7",
"progress": "^2.0.3",
"yargs": "^14.0.0"
},
"devDependencies": {
"husky": "^3.0.5",
"prettier": "1.18.2",
"pretty-quick": "^1.11.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}