This repository has been archived by the owner on Jan 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 1.88 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
{
"name": "precaution",
"version": "1.0.0",
"description": "GitHub App for PR security linting",
"contributors": [
{
"name": "Antoine Salon",
"url": "https://github.com/evqna"
},
{
"name": "Eric Brown",
"url": "https://github.com/ericwb"
},
{
"name": "Joshua Lock",
"url": "https://github.com/joshuagl"
},
{
"name": "Martin Vrachev",
"email": "[email protected]",
"url": "https://github.com/mvrachev"
}
],
"license": "BSD-2-Clause",
"repository": "https://github.com/vmware/precaution.git",
"homepage": "https://github.com/vmware/precaution",
"bugs": "https://github.com/vmware/precaution/issues",
"keywords": [
"github",
"checks",
"security",
"lint"
],
"scripts": {
"dev": "nodemon --exec \"yarn start\"",
"start": "probot run ./index.js",
"test": "standard && LOG_LEVEL=error jest",
"test:watch": "LOG_LEVEL=error jest --watch --notify --notifyMode=change --coverage",
"lint": "standard --fix"
},
"dependencies": {
"cheerio": "^1.0.0-rc.3",
"fs-extra": "^7.0.0",
"js-yaml": "^3.13.1",
"minimatch": "^3.0.4",
"probot": "^7.4.0",
"request": "^2.88.0",
"tslint": "^5.14.0",
"tslint-config-security": "^1.15.0",
"typescript": "^3.3.4000"
},
"devDependencies": {
"jest": "^24.3.1",
"nodemon": "^1.17.2",
"smee-client": "^1.0.2",
"standard": "^12.0.1",
"ts-node": "^8.0.3"
},
"engines": {
"node": ">= 10"
},
"jest": {
"testEnvironment": "node",
"roots": [
"test"
],
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"standard": {
"globals": [
"jest",
"test",
"expect",
"describe",
"beforeAll",
"beforeEach",
"afterAll",
"afterEach"
]
},
"main": "index.js",
"directories": {
"test": "test"
}
}