forked from probot/probot-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.17 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
{
"name": "probot-config",
"version": "0.1.0",
"description": "A Probot extension that manages shared configs",
"main": "lib/index.js",
"repository": "https://github.com/getsentry/probot-config",
"author": "Jan Michael Auer <[email protected]>",
"license": "BSD-3-Clause",
"private": false,
"scripts": {
"fix:eslint": "eslint --fix lib",
"fix:prettier": "prettier --write 'lib/**/*.js'",
"fix": "npm-run-all fix:eslint fix:prettier",
"start": "probot run ./index.js",
"test:jest": "jest",
"test:eslint": "eslint lib",
"test:prettier": "prettier-check 'lib/**/*.js'",
"test": "npm-run-all test:jest test:eslint test:prettier",
"test:watch": "jest --watch --notify"
},
"dependencies": {
"js-yaml": "^3.10.0"
},
"devDependencies": {
"eslint": "^4.11.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.8.0",
"eslint-plugin-import": "^2.8.0",
"jest": "^21.2.1",
"npm-run-all": "^4.1.2",
"prettier": "^1.8.2",
"prettier-check": "^2.0.0"
},
"peerDependencies": {
"probot": ">= 0.11.0"
},
"engines": {
"node": ">=7.7.0",
"npm": ">= 2.0.0",
"yarn": ">= 1.0.0"
}
}