This repository was archived by the owner on Nov 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.46 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
48
{
"name": "action",
"private": true,
"version": "0.0.1",
"license": "MIT",
"scripts": {
"format": "prettier --check \"./**/*.ts\"",
"format:fix": "prettier --write \"./**/*.ts\"",
"lint": "eslint --ext .ts src test",
"lint:fix": "yarn lint --fix",
"typecheck": "tsc --noEmit",
"test": "mocha --config .mocharc.js",
"test:watch": "mocha --config .mocharc.js --watch",
"test:fix": "yarn lint:fix && yarn format:fix && yarn test && yarn typecheck",
"build": "yarn clean && ncc build ./src/entrypoint.ts -o dist",
"clean": "rm -rf dist"
},
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/exec": "^1.0.4",
"@actions/github": "^4.0.0",
"@types/node": "^14.14.10",
"@vercel/ncc": "^0.25.1",
"all-contributors-cli": "=6.19.0",
"ts-essentials": "^7.0.1"
},
"devDependencies": {
"@types/fs-extra": "^9.0.5",
"@types/mocha": "^8.0.4",
"@types/tmp": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"earljs": "^0.1.9",
"eslint": "^7.15.0",
"eslint-config-typestrict": "^1.0.1",
"eslint-plugin-no-only-tests": "^2.4.0",
"eslint-plugin-simple-import-sort": "^6.0.1",
"eslint-plugin-sonarjs": "^0.5.0",
"eslint-plugin-unused-imports": "^1.0.1",
"fs-extra": "^9.0.1",
"mocha": "^8.2.1",
"nock": "^13.0.5",
"prettier": "^2.2.1",
"tmp": "^0.2.1",
"ts-node": "^9.1.0",
"typescript": "^4.1.2"
}
}