generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
41 lines (41 loc) · 1.05 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
{
"name": "close-matching-issues",
"version": "0.0.0",
"private": true,
"description": "A GitHub Action for closing issues matching a search query",
"main": "dist/index.js",
"scripts": {
"build": "npx ncc build ./src/main.ts",
"ci": "npm run format-check && npm test",
"format": "prettier --write **/*.ts **/*.md **/*.yaml **/*.yml",
"format-check": "prettier --check **/*.ts **/*.md **/*.yaml **/*.yml",
"start": "npx ncc run ./src/main.ts",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lee-dohm/close-matching-issues.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "Lee Dohm",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0"
},
"devDependencies": {
"@types/jest": "^26.0.22",
"@types/node": "^14.14.37",
"@zeit/ncc": "^0.22.3",
"jest": "^25.5.4",
"jest-circus": "^26.6.3",
"nock": "^13.0.11",
"prettier": "2.2.1",
"ts-jest": "^25.5.1",
"typescript": "^3.9.9"
}
}