forked from bkeepers/workflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 961 Bytes
/
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
{
"name": "probot-workflow",
"version": "1.0.0",
"description": "workflow automation",
"license": "ISC",
"author": "Brandon Keepers",
"repository": "https://github.com/probot/workflow",
"scripts": {
"start": "probot run ./index.js",
"test": "jest && standard"
},
"dependencies": {
"handlebars": "^4.0.6",
"probot": "^12.1.0"
},
"engines": {
"node": ">= 7.7.0",
"npm": ">= 4.0.0"
},
"devDependencies": {
"eslint-plugin-markdown": "^1.0.0-beta.7",
"jest": "^22.4.3",
"localtunnel": "^1.8.3",
"standard": "^11.0.1"
},
"jest": {
"testMatch": [
"**/test/**/*.js?(x)",
"**/?(*.)(spec|test).js?(x)"
],
"modulePathIgnorePatterns": [
"<rootDir>/test/fixtures/",
"<rootDir>/test/setup.js"
]
},
"standard": {
"env": [
"jest"
],
"globals": [
"on",
"include",
"contents"
],
"plugins": [
"markdown"
]
}
}