-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.26 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.26 KB
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-metrics",
"version": "1.0.0",
"description": "[](https://travis-ci.org/matchilling/github-metrics-graphite-exporter)",
"main": "src/cli.js",
"dependencies": {
"better-sqlite3": "^5.4.0",
"commander": "^2.20.0",
"csv-writer": "^1.3.0",
"github-graphql-api": "^1.0.6",
"moment": "^2.24.0"
},
"devDependencies": {
"jest": "^24.8.0",
"prettier": "^1.17.0"
},
"scripts": {
"env": "node src/print_env.js",
"lint": "prettier --single-quote --trailing-comma=es5 --debug-check es5 'src/**/*.js' README.md",
"lint:fix": "prettier --single-quote --trailing-comma=es5 es5 --write 'src/**/*.js' README.md",
"start": "node src/cli.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/matchilling/github-metrics-graphite-exporter.git"
},
"author": {
"name": "Mathias Schilling",
"email": "m@matchilling.com",
"url": "https://www.matchilling.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/matchilling/github-metrics-graphite-exporter/issues"
},
"homepage": "https://github.com/matchilling/github-metrics-graphite-exporter#readme"
}