-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.09 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
{
"name": "get-package-manager",
"version": "1.0.0",
"description": "Get which package manager you're using (yarn or pnpm or npm)",
"repository": "https://github.com/wow-actions/get-package-manager",
"license": "MIT",
"author": {
"name": "bubkoo",
"email": "[email protected]"
},
"main": "dist/index.js",
"files": [
"dist",
"action.yml"
],
"scripts": {
"clean": "rimraf dist",
"lint": "eslint 'src/**/*.{js,ts}?(x)' --fix",
"prebuild": "run-s lint clean",
"build": "ncc build src/index.ts --minify --v8-cache"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@wow-actions/parse-inputs": "^2.0.1",
"detect-package-manager": "^2.0.1"
},
"devDependencies": {
"@bubkoo/eslint-config": "^2.3.0",
"@bubkoo/husky-hooks": "^1.0.4",
"@bubkoo/prettier-config": "^1.5.3",
"@bubkoo/tsconfig": "^1.2.4",
"@types/node": "^18.11.18",
"@vercel/ncc": "^0.36.1",
"eslint": "^8.33.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.3",
"rimraf": "^4.1.2",
"typescript": "^4.9.4"
}
}