-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.29 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.29 KB
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": "project-action",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"type": "module",
"scripts": {
"build-run-tests": "ncc build bin/run-tests.js -o dist/run-tests -m --source-map",
"build-run-post-actions": "ncc build bin/run-post-actions.js -o dist/run-post-actions -m --source-map",
"build": "npm run build-run-tests && npm run build-run-post-actions",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Hexlet/project-action.git"
},
"author": "Hexlet",
"license": "ISC",
"bugs": {
"url": "https://github.com/Hexlet/project-action/issues"
},
"homepage": "https://github.com/Hexlet/project-action#readme",
"dependencies": {
"@actions/artifact": "^6.2.1",
"@actions/core": "^3.0.1",
"@actions/exec": "^3.0.0",
"@actions/github": "^9.1.1",
"@actions/glob": "^0.7.0",
"@actions/http-client": "^4.0.1",
"@actions/io": "^3.0.2",
"ansi-colors": "^4.1.3",
"chalk": "^5.6.2",
"clean-stack": "^6.0.0",
"ini": "^6.0.0",
"js-yaml": "^4.1.1",
"lodash": "^4.18.1"
},
"devDependencies": {
"fastify": "^5.8.5",
"@biomejs/biome": "2.4.13",
"@vercel/ncc": "^0.38.4",
"jest": "^30.3.0",
"nock": "^14.0.13",
"npm-check-updates": "^22.0.1"
}
}