-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.23 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
{
"name": "setup-regal",
"version": "0.0.1",
"description": "",
"main": "dist/index.js",
"scripts": {
"lint": "eslint --ext .ts,.js --ignore-path .gitignore --ignore-path .eslintignore .",
"prepare": "ncc build src/index.ts -o dist --source-map --license licenses.txt",
"test": "jest",
"all": "npm run lint && npm run prepare && npm run test",
"format": "prettier --write 'src/**/*.{js,ts}'"
},
"keywords": [],
"homepage": "https://docs.styra.com/regal",
"author": "Styra",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/StyraInc/setup-regal.git"
},
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/exec": "^1.1.0",
"@actions/github": "^5.0.0",
"@actions/io": "^1.1.1",
"@actions/tool-cache": "^1.7.1",
"semver": "^7.3.5"
},
"devDependencies": {
"@types/semver": "^7.3.9",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"@vercel/ncc": "^0.36.1",
"eslint": "^8.1.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"jest": "^27.3.1",
"prettier": "^2.4.1",
"typescript": "^4.4.4"
}
}