-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.69 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
{
"name": "xeol-action",
"version": "1.0.0",
"description": "Xeol image scan github action",
"main": "index.js",
"directories": {
"lib": "lib",
"test": "tests"
},
"scripts": {
"lint": "eslint index.js",
"test": "eslint index.js && npm run download-pinned-xeol-db && XEOL_DB_AUTO_UPDATE=false XEOL_DB_CACHE_DIR=./xeol-db XEOL_DB_VALIDATE_AGE=false jest",
"test:update-snapshots": "eslint index.js && npm run download-pinned-xeol-db && XEOL_DB_AUTO_UPDATE=false XEOL_DB_CACHE_DIR=./xeol-db XEOL_DB_VALIDATE_AGE=false jest --updateSnapshot",
"download-pinned-xeol-db": "mkdir -p xeol-db/1 && curl -sL https://data.xeol.io/xeol/databases/xeol-db_v1_2023-01-29T04:56:12.054168Z.tar.gz | tar zxf - -C xeol-db/1",
"build": "ncc build ./index.js",
"precommit": "pretty-quick --staged && npm run build && git add dist/",
"prepare": "husky install",
"prettier": "prettier -w index.js",
"update-deps": "ncu -u && npm i && npm audit fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xeol-io/xeol-action.git"
},
"keywords": [
"image",
"scanning"
],
"author": "xeol-io",
"license": "MIT",
"bugs": {
"url": "https://github.com/xeol-io/xeol-action/issues"
},
"homepage": "https://github.com/xeol-io/xeol-action#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/tool-cache": "^2.0.1",
"lodash": "^4.17.21"
},
"devDependencies": {
"@microsoft/jest-sarif": "^1.0.0-beta.0",
"@vercel/ncc": "^0.34.0",
"eslint": "^8.25.0",
"husky": "^8.0.1",
"jest": "^29.2.1",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"tslib": "^2.4.0"
}
}