forked from luisrjaeger/approved-event-checker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.03 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "approved-event-checker",
"version": "1.0.0",
"description": "Github PR approved checker",
"keywords": [
"actions",
"node",
"typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/luisrjaeger/approved-event-checker"
},
"license": "MIT",
"author": "luisrjaeger",
"scripts": {
"build": "run-s clean lint compile bundle",
"bundle": "ncc build src/main.ts -m",
"clean": "del-cli -f dist",
"clean:all": "del-cli -f dist .cache",
"compile": "tsc --project .",
"lint": "tslint --project .",
"start": "ts-node src/main.ts",
"test": "ava",
"test:coverage": "nyc ava",
"watch": "ava -w"
},
"ava": {
"compileEnhancements": false,
"extensions": [
"ts"
],
"files": [
"test/**/*.test.ts"
],
"require": [
"ts-node/register",
"tsconfig-paths/register"
],
"verbose": true
},
"nyc": {
"all": true,
"extends": "@istanbuljs/nyc-config-typescript",
"include": [
"src"
],
"reporter": [
"lcov",
"text"
]
},
"dependencies": {
"@actions/core": "1.10.0",
"@octokit/rest": "16.35.0",
"streaming-iterables": "4.1.1"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "0.1.3",
"@types/node": "12.12.14",
"@types/prettier": "1.19.0",
"@types/source-map-support": "0.5.0",
"@zeit/ncc": "0.20.5",
"ava": "2.4.0",
"codecov": "3.7.1",
"cpy-cli": "2.0.0",
"cross-env": "6.0.3",
"del-cli": "3.0.0",
"npm-check-updates": "3.2.2",
"npm-run-all": "4.1.5",
"nyc": "14.1.1",
"prettier": "1.19.1",
"sort-package-json": "1.30.0",
"source-map-support": "0.5.16",
"ts-node": "8.5.4",
"tsconfig-paths": "3.9.0",
"tslint": "5.20.1",
"tslint-config-prettier": "1.18.0",
"tslint-microsoft-contrib": "6.2.0",
"tslint-plugin-prettier": "2.0.1",
"typescript": "3.7.3",
"typescript-tslint-plugin": "0.5.5",
"typesync": "0.6.1"
},
"resolutions": {
"https-proxy-agent": "^2.2.3"
}
}