-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1.07 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
{
"name": "probot-app-label-dependency-pr",
"version": "0.1.0",
"description": "GitHub App that adds the dependency-related labels ('dependencies' and 'infra') if dependencies are upgraded in package.json",
"author": "Alexander Smith <[email protected]>",
"contributors": [],
"repository": "https://github.com/uber-web/probot-app-label-dependency-pr.git",
"scripts": {
"start": "probot run ./index.js",
"test": "npm run lint && jest",
"jest": "jest",
"lint": "eslint .",
"fix": "eslint . --fix"
},
"dependencies": {
"fast-deep-equal": "^2.0.1",
"probot": "^7.0.1"
},
"devDependencies": {
"eslint": "^5.3.0",
"eslint-plugin-prettier": "3.0.1",
"jest-cli": "^24.0.0",
"jest-environment-node": "^24.0.0",
"localtunnel": "1.9.1",
"prettier": "^1.14.1",
"smee-client": "^1.0.2"
},
"jest": {
"cache": false,
"testEnvironment": "node",
"transform": {
"^.+\\.jsx?$": "babel-jest"
},
"testRegex": ".*/__tests__/.*.test.js$"
},
"engines": {
"node": ">= 8.9.0"
},
"license": "MIT"
}