-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.56 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
{
"name": "github-pr-reports",
"version": "1.0.0",
"description": "Generates statistics related to GitHub repository pull requests",
"main": "dist/index.js",
"scripts": {
"build": "rm -rf dist/ && tsc",
"build:watch": "tsc -w",
"prestart": "npm run build",
"start": "node dist/index.js",
"lint": "eslint .",
"test": "ava -v",
"tdd": "ava --watch -v"
},
"author": "",
"license": "MIT",
"engines": {
"node": ">=8.10"
},
"dependencies": {
"async": "2.6.1",
"bluebird": "3.5.1",
"config": "1.31.0",
"dotenv": "6.0.0",
"github-oauth": "0.2.2",
"http-close": "0.0.2",
"moment": "2.22.2",
"node-github-graphql": "0.2.7",
"opn": "5.3.0",
"pad": "2.1.0",
"winston": "3.0.0"
},
"devDependencies": {
"@types/async": "2.0.49",
"@types/bluebird": "3.5.23",
"@types/config": "0.0.34",
"@types/moment": "2.13.0",
"@types/node": "8.10.21",
"ava": "0.25.0",
"eslint": "5.2.0",
"eslint-config-prettier": "2.9.0",
"eslint-config-recommended": "3.0.0",
"eslint-plugin-prettier": "2.6.2",
"nodemon": "1.18.3",
"prettier": "1.13.7",
"ts-node": "7.0.0",
"typescript": "2.9.2",
"typescript-eslint-parser": "17.0.0"
},
"ava": {
"compileEnhancements": false,
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}