-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.15 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
{
"name": "blogpost-checker",
"version": "1.0.0",
"description": "Check if jekyll blogpost is not outdated before merge",
"author": "Sergii Paryzhskyi <[email protected]> (https://github.com/HeeL)",
"license": "MIT",
"repository": "https://github.com/HeeL/blogpost-checker.git",
"scripts": {
"start": "probot run ./index.js",
"dev:start": "nodemon --exec 'npm start'",
"test": "jest",
"test:watch": "jest . --watch",
"pretest": "npm run lint",
"lint": "eslint ."
},
"jest": {
"testRegex": "/test/unit/.*Spec.js$",
"setupTestFrameworkScriptFile": "<rootDir>/test/unit/setup.js"
},
"dependencies": {
"axios": "^0.17.1",
"probot": "^5.0.0",
"ramda": "^0.25.0"
},
"devDependencies": {
"eslint": "^4.17.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-ramda": "^2.4.0",
"jest": "^21.2.1",
"mockdate": "^2.0.2",
"nodemon": "^1.14.12",
"smee-client": "^1.0.1"
},
"engines": {
"node": ">= 8.9.0",
"npm": ">= 5.0.0"
},
"keywords": [
"jekyll",
"github",
"probot",
"probot-plugin",
"probot-app"
]
}