forked from nus-cs2103/nus-se-pr-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 999 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
{
"name": "cs2103-pr-bot",
"version": "1.0.0",
"description": "Pull Request Assigning Bot based on Accuser",
"main": "index.js",
"scripts": {
"test": "jest --verbose",
"testDev": "jest --verbose --watchAll",
"lint": "eslint src ./index.js",
"checkPermissions": "node index.js dry"
},
"homepage": "https://github.com/nus-cs2103/cs2103-pr-bot",
"repository": {
"type": "git",
"url": "https://github.com/nus-cs2103/cs2103-pr-bot.git"
},
"contributors": [
{
"name": "Sam Yong",
"email": "[email protected]",
"url": "http://mauris.sg/"
}
],
"license": "MIT",
"engines": {
"node": "^6.3.0"
},
"dependencies": {
"accuser": "^1.2.0",
"babyparse": "^0.4.6",
"bluebird": "^3.5.0",
"dotenv": "^2.0.0",
"github": "^11.0.0",
"mu2": "^0.5.21"
},
"devDependencies": {
"eslint": "^4.4.1",
"eslint-config-airbnb-base": "^11.3.2",
"eslint-plugin-import": "^2.7.0",
"jest": "^20.0.4"
}
}