-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
39 lines (39 loc) · 1.21 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
{
"name": "github-issue-sync",
"version": "0.3.2",
"description": "Synchronize issues to GitHub Project boards",
"author": "Parity <[email protected]> (https://parity.io)",
"repository": {
"type": "git",
"url": "git+https://github.com/paritytech/github-issue-sync.git"
},
"license": "Apache-2.0",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/main.ts",
"start": "node --experimental-modules dist/index.js",
"test": "jest",
"typecheck": "tsc --noEmit",
"fix:eslint": "eslint --fix",
"fix:prettier": "prettier --write",
"fix": "yarn fix:eslint '{*,**/*}.ts' && yarn fix:prettier '{*,**/*}.json'",
"prettier": "prettier --check --loglevel silent '{*,**/*}.{json,html}'",
"eslint": "eslint --quiet '{*,**/*}.ts'",
"lint": "yarn eslint && yarn prettier"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@octokit/rest": "^20.0.2"
},
"devDependencies": {
"@eng-automation/js-style": "^2.3.0",
"@octokit/graphql-schema": "^14.58.0",
"@types/jest": "^29.5.12",
"@vercel/ncc": "^0.38.1",
"jest": "^29.7.0",
"jest-mock-extended": "^3.0.5",
"ts-jest": "^29.1.2",
"typescript": "^5.4.2"
}
}