-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.31 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
{
"name": "auditor-action-core",
"version": "0.0.0",
"private": true,
"description": "The Auditor Core",
"main": "lib/main.js",
"type": "module",
"scripts": {
"format": "prettier --write '**/*.*js'",
"format-check": "prettier --check '**/*.*js'",
"lint": "eslint src/**/*.js",
"package": "NODE_OPTIONS=--openssl-legacy-provider ncc build src/main.js -o dist --source-map --license licenses.txt",
"all": "npm run format && npm run lint && npm run package",
"bundle": "npm run format && npm run package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GrantBirki/auditor-action-core.git"
},
"keywords": [
"actions",
"auditor",
"core"
],
"author": "Grant Birkinbine",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"dedent-js": "^1.0.1",
"js-yaml": "^4.1.0",
"parse-git-diff": "^0.0.15"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.24.1",
"@types/node": "^20.12.4",
"@vercel/ncc": "^0.38.1",
"make-coverage-badge": "^1.2.0",
"eslint": "^8.57.0",
"eslint-plugin-jest": "^27.9.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"@babel/preset-env": "^7.24.4",
"@babel/core": "^7.24.4",
"babel-jest": "^29.7.0"
}
}