-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.32 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": "github-action-licenses-export",
"version": "1.2.2",
"description": "GitHub action to export a file with the OSS licenses used in the application",
"main": "dist/index.js",
"type": "module",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "tap --no-coverage",
"prepare": "husky",
"build": "ncc build src --license licenses.txt"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nearform-actions/github-action-licenses-export.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/nearform-actions/github-action-licenses-export/issues"
},
"homepage": "https://github.com/nearform-actions/github-action-licenses-export#readme",
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@vercel/ncc": "^0.38.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"prettier": "^2.8.8",
"tap": "^16.3.8"
},
"lint-staged": {
"*.{js,jsx}": "eslint --cache --fix"
},
"dependencies": {
"@actions/core": "^1.11.1",
"actions-toolkit": "github:nearform/actions-toolkit",
"glob": "^11.0.1",
"semver": "^7.7.1"
}
}