-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 936 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 936 Bytes
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": "update-docs",
"version": "1.0.0",
"description": "A GitHub App that prompts users to include documentation in pull requests",
"main": "index.js",
"scripts": {
"start": "probot run ./index.js",
"test": "mocha && standard",
"test-watch": "mocha --watch && standard"
},
"repository": {
"type": "git",
"url": "git+https://github.com/behaviorbot/update-docs.git"
},
"author": "hiimbex",
"license": "ISC",
"bugs": {
"url": "https://github.com/behaviorbot/update-docs/issues"
},
"homepage": "https://github.com/behaviorbot/update-docs#readme",
"devDependencies": {
"eslint-plugin-import": "^2.7.0",
"expect": "^1.20.2",
"localtunnel": "^1.8.3",
"mocha": "^3.4.2",
"standard": "^10.0.3"
},
"dependencies": {
"probot": "^7.2.0"
},
"engines": {
"node": ">= 7.7.0",
"npm": ">= 4.0.0"
},
"standard": {
"env": [
"mocha"
]
}
}