-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.68 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
47
48
49
50
51
52
53
{
"name": "github-custom-status-checker",
"version": "1.0.0",
"main": "src/server.js",
"scripts": {
"start": "nodemon --exec babel-node src/server.js",
"build": "babel src --out-dir dist",
"serve": "node dist/server.js",
"test": "jest --runInBand"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/khanguslee/github-custom-status-checker.git"
},
"author": "Kuan Hou Lee <angus.lee809@gmail.com>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/node": "^7.6.3",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.3",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-prettier": "^3.1.1",
"jest": "^24.9.0",
"mongodb-memory-server": "^6.0.1",
"nodemon": "^1.19.4",
"prettier": "^1.18.2"
},
"dependencies": {
"@babel/runtime": "^7.7.1",
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"crypto": "^1.0.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mongoose": "^5.7.7",
"morgan": "^1.9.1",
"validator": "^12.0.0",
"winston": "^3.2.1"
},
"description": "This will be used for the Monash Association of Coding (MAC) Open Source project where only members of MAC are able to send PRs to the repository. Using this status checker, we can ensure that the user sending a PR is a member of MAC!",
"bugs": {
"url": "https://github.com/khanguslee/github-custom-status-checker/issues"
},
"homepage": "https://github.com/khanguslee/github-custom-status-checker#readme",
"jest": {
"testEnvironment": "node"
}
}