-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.49 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
{
"name": "scoped-actions",
"version": "0.9.2",
"description": "GitHub Actions to run actions on changed scope",
"main": "index.ts",
"scripts": {
"prettier": "prettier --write \"**/*.{md,jsx,tsx,ts,json,html,css,js,yml}\"",
"prettier-check": "prettier --check \"**/*.{md,jsx,tsx,ts,json,html,css,js,yml}\"",
"lint:fix": "npx eslint --fix --max-warnings 0 \"**/*.{jsx,tsx,ts,js}\"",
"lint": "npx eslint --max-warnings 0 \"**/*.{jsx,tsx,ts,js}\"",
"prepare": "husky install",
"build": "npx ncc build index.ts --license licenses.txt",
"pretty-quick": "pretty-quick --staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DukeManh/scoped-actions.git"
},
"author": "Duc",
"license": "MIT",
"bugs": {
"url": "https://github.com/DukeManh/scoped-actions/issues"
},
"homepage": "https://github.com/DukeManh/scoped-actions#readme",
"devDependencies": {
"@types/eslint": "^8.2.0",
"@types/node": "^16.11.9",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"@vercel/ncc": "^0.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"prettier": "^2.5.0",
"pretty-quick": "^3.1.2",
"typescript": "^4.4.4"
},
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/exec": "^1.1.0",
"eslint": "^8.3.0",
"minimatch": "^3.0.4"
}
}