generated from gitcommitshow/github-app-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
28 lines (28 loc) · 803 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
{
"name": "rudder_github_app",
"description": "Assistant for external contributors",
"private": false,
"version": "0.8.0",
"type": "module",
"scripts": {
"lint": "standard",
"start": "node app.js",
"test": "RUN_E2E_TESTS=true ./node_modules/.bin/mocha test/lifecycle.test.js test/**/*.test.js",
"test:integration": "./node_modules/.bin/mocha test/lifecycle.test.js test/integration/**/*.test.js",
"test:e2e": "RUN_E2E_TESTS=true ./node_modules/.bin/mocha test/lifecycle.test.js test/e2e/**/*.test.js"
},
"devDependencies": {
"chai": "^5.1.1",
"chai-http": "^5.0.0",
"mocha": "^10.7.3",
"sinon": "^19.0.2",
"standard": "^17.0.0"
},
"dependencies": {
"dotenv": "^16.0.3",
"octokit": "^3.1.2"
},
"engines": {
"node": ">=20"
}
}