mirror of
https://github.com/seepine/hash-files.git
synced 2025-02-24 00:00:12 +08:00
46 lines
1.2 KiB
JSON
46 lines
1.2 KiB
JSON
|
{
|
||
|
"name": "hash-files",
|
||
|
"version": "1.0.0",
|
||
|
"private": true,
|
||
|
"description": "Actions of Compute the SHA256 hash of specified files",
|
||
|
"main": "lib/main.js",
|
||
|
"scripts": {
|
||
|
"build": "tsc",
|
||
|
"format": "prettier --write **/*.ts",
|
||
|
"format-check": "prettier --check **/*.ts",
|
||
|
"lint": "eslint src/**/*.ts",
|
||
|
"package": "ncc build --source-map --license licenses.txt",
|
||
|
"test": "jest",
|
||
|
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
|
||
|
},
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "git+https://github.com/seepine/hash-files.git"
|
||
|
},
|
||
|
"keywords": [
|
||
|
"actions",
|
||
|
"node",
|
||
|
"hash-files"
|
||
|
],
|
||
|
"author": "seepine",
|
||
|
"license": "MIT",
|
||
|
"dependencies": {
|
||
|
"@actions/core": "^1.10.0",
|
||
|
"@cjs-exporter/globby": "^13.1.3",
|
||
|
"crypto": "^1.0.1"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"@types/node": "^18.16.3",
|
||
|
"@typescript-eslint/parser": "^5.59.2",
|
||
|
"@vercel/ncc": "^0.36.1",
|
||
|
"eslint": "^8.39.0",
|
||
|
"eslint-plugin-github": "^4.7.0",
|
||
|
"eslint-plugin-jest": "^27.2.1",
|
||
|
"jest": "^29.5.0",
|
||
|
"js-yaml": "^4.1.0",
|
||
|
"prettier": "^2.8.8",
|
||
|
"ts-jest": "^29.1.0",
|
||
|
"typescript": "^5.0.4"
|
||
|
}
|
||
|
}
|