-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.38 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
49
50
51
{
"name": "@useoptic/action",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"clean": "rm -rf build && rm -f tsconfig.tsbuildinfo",
"build": "yarn run tsc && ncc build src/index.ts -o build",
"ci:build": "yarn build",
"test": "ENVIRONMENT=test yarn jest",
"ci:test": "yarn test",
"lint": "eslint src --max-warnings 0 --ext .js,.ts && prettier --check 'src/**/*.(js|jsx|ts|tsx|json|css)'",
"ci:lint": "yarn lint",
"format": "prettier --write 'src/**/*.(js|jsx|ts|tsx|json|css)'"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:jest/recommended"
]
},
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"/build"
],
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"@types/jest": "^29.2.6",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"@vercel/ncc": "^0.36.0",
"eslint": "^8.32.0",
"eslint-plugin-jest": "^27.2.1",
"jest": "^29.3.1",
"prettier": "^2.8.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.0.0"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1"
},
"prettier": {}
}