-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
46 lines (46 loc) · 1.11 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": "probot-duplicate-detector",
"version": "1.0.0",
"description": "Automatic duplicate detection for GitHub Issues",
"author": "Samuel Attard",
"license": "ISC",
"repository": "MarshallOfSound/probot-issue-duplicate-detection",
"scripts": {
"deploy": "now --alias=duplicate.probot.samuelattard.us",
"start": "probot run ./src/index.js",
"now-start": "probot run ./src/index.js --private-key=prod.pem --integration=1862",
"test": "xo --extend probot && mocha test/*-spec.js --timeout=10000"
},
"dependencies": {
"compromise": "^8.2.0",
"debug": "^2.6.3",
"fuse.js": "^2.6.2",
"mustache": "^2.3.0",
"probot": "~0.3.0"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint-config-probot": "^0.1.0",
"mocha": "^3.2.0",
"node-fetch": "^1.6.3",
"sinon": "^2.1.0",
"xo": "^0.19.0"
},
"engines": {
"node": ">= 7.6.0",
"npm": ">= 4.0.0"
},
"xo": {
"rules": {
"linebreak-style": 0,
"object-curly-spacing": [
2,
"always"
]
},
"ignores": [
"test.js",
"test/fetch-issues.js"
]
}
}