generated from Bullrich/parity-action-template
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
47 lines (47 loc) · 1.4 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
{
"name": "auto-merge-bot",
"version": "1.1.0",
"description": "Bot which enables or disable auto-merge",
"main": "src/index.ts",
"scripts": {
"start": "node dist",
"build": "ncc build --license LICENSE",
"test": "jest",
"fix": "eslint --fix 'src/**/*'",
"lint": "eslint 'src/**/*'",
"codegen": "graphql-codegen --config codegen.ts",
"copy": "node scripts/copy-files.js",
"postinstall": "npm-run-all codegen copy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paritytech/auto-merge-bot.git"
},
"author": "Javier Bullrich <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/paritytech/auto-merge-bot/issues"
},
"homepage": "https://github.com/paritytech/auto-merge-bot#readme",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@octokit/graphql": "^8.0.1",
"@octokit/graphql-schema": "^14.58.0",
"@octokit/webhooks-types": "^7.4.0",
"graphql": "^16.8.1"
},
"devDependencies": {
"@eng-automation/js-style": "^2.3.0",
"@graphql-codegen/cli": "5.0.2",
"@graphql-codegen/typescript": "4.0.6",
"@graphql-codegen/typescript-resolvers": "^4.0.6",
"@types/jest": "^29.5.12",
"@vercel/ncc": "^0.38.1",
"jest": "^29.7.0",
"jest-mock-extended": "^3.0.5",
"npm-run-all": "^4.1.5",
"ts-jest": "^29.1.2",
"typescript": "^5.4.3"
}
}