-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 882 Bytes
/
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
{
"name": "github-metrics-graphite-exporter",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"scripts": {
"dist": "tsc",
"lint": "prettier --single-quote --trailing-comma=es5 --debug-check es5 src/**/*.ts",
"lint:fix": "prettier --single-quote --trailing-comma=es5 es5 --write src/**/*.ts",
"start": "node ./node_modules/.bin/ts-node src/index.ts",
"test": "npm run lint && node ./node_modules/.bin/jest"
},
"author": "Csongor Zalatnai",
"license": "ISC",
"dependencies": {
"moment": "^2.24.0",
"sqlite": "^3.0.3",
"ts-node": "^8.0.3",
"typescript": "^3.4.3"
},
"devDependencies": {
"@types/jest": "^24.0.11",
"@types/node": "^11.13.4",
"jest": "^24.7.1",
"prettier": "1.17.0",
"ts-jest": "^24.0.2"
},
"repository": "[email protected]:zalatnaicsongor/github-metrics-graphite-exporter.git"
}