-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.24 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": "lab-ci",
"version": "3.2.0",
"description": "A small set of modules written in Node.js for running automated tests of MATLAB and Python code in response to GitHub events. Also submits code coverage to the Coveralls API.",
"main": "main.js",
"scripts": {
"test": "mocha -r dotenv/config ./test",
"coverage": "nyc npm run test",
"start": "node -r dotenv/config main.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cortex-lab/matlab-ci.git"
},
"keywords": [],
"author": "Miles Wells",
"license": "ISC",
"bugs": {
"url": "https://github.com/cortex-lab/matlab-ci/issues"
},
"homepage": "https://github.com/cortex-lab/matlab-ci#readme",
"dependencies": {
"@octokit/auth-app": "^2.10.2",
"@octokit/request": "^5.4.9",
"coveralls": "^3.1.1",
"debug": "^4.3.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"github-webhook-handler": "^1.0.0",
"localtunnel": "^2.0.2",
"shelljs": "^0.8.5",
"tree-kill": "^1.2.2",
"xml2js": "^0.4.23"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^9.1.3",
"nock": "^13.0.4",
"nyc": "^15.1.0",
"sinon": "^9.2.1",
"supertest": "^6.0.1"
},
"engines": {
"node": ">=12.19.0"
}
}