-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.25 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.25 KB
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
{
"name": "setup-opa",
"version": "0.0.1",
"description": "",
"main": "dist/index.js",
"scripts": {
"lint": "eslint --ext .ts,.js --ignore-path .gitignore --ignore-path .eslintignore .",
"prepare": "esbuild src/index.ts --bundle --platform=node --outfile=dist/index.js --sourcemap",
"test": "jest",
"all": "npm run lint && npm run prepare && npm run test",
"format": "prettier --write 'src/**/*.{js,ts}'"
},
"keywords": [],
"homepage": "https://www.openpolicyagent.org/",
"author": "Infracost",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/open-policy-agent/setup-opa.git"
},
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/exec": "^1.1.0",
"@actions/github": "^9.1.0",
"@actions/io": "^3.0.2",
"@actions/tool-cache": "^4.0.0",
"semver": "^7.7.2"
},
"devDependencies": {
"@types/semver": "^7.7.1",
"@typescript-eslint/eslint-plugin": "^8.58.2",
"@typescript-eslint/parser": "^8.58.2",
"esbuild": "^0.28.0",
"eslint": "^8.1.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"jest": "^30.3.0",
"prettier": "^3.8.3",
"typescript": "^5.8.3"
}
}