-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.56 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
52
53
54
55
56
57
58
59
{
"name": "setup-variables",
"version": "0.0.0",
"private": true,
"description": "Map your variables based on other keys",
"keywords": [
"actions",
"node",
"setup"
],
"repository": "github:cobraz/setup-variables",
"license": "MIT",
"author": "",
"main": "lib/main.js",
"scripts": {
"build": "ncc build --source-map src/main.ts",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"test": "jest --passWithNoTests",
"all": "yarn run build && yarn run format && yarn run lint && yarn run test"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{yaml,yml}": "prettier --write",
"src/**/*.{js,ts}": "eslint --cache --fix",
"{.eslintrc,.releaserc.json,.tsconfig.json}": "prettier --write",
"*.md": "prettier --write"
},
"dependencies": {
"@actions/core": "^1.10.0",
"husky": "^4.3.8",
"runtypes": "^6.6.0",
"yaml": "^2.2.1"
},
"devDependencies": {
"@types/faker": "^6.6.9",
"@types/jest": "~29.5.0",
"@types/node": "~14",
"@typescript-eslint/eslint-plugin": "~5.57.1",
"@typescript-eslint/parser": "~5.57.1",
"@vercel/ncc": "^0.36.1",
"eslint": "~8.39.0",
"eslint-config-prettier": "~8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "~27.2.1",
"faker": "^6.6.6",
"jest": "~29.5.0",
"lint-staged": "^13.2.1",
"prettier": "^2.8.7",
"rimraf": "~4.4.1",
"ts-jest": "~29.1.0",
"typescript": "^5.0.4"
}
}