-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
48 lines (48 loc) · 1.36 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
{
"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": "^2.1.4",
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@actions/glob": "^0.4.0",
"@actions/http-client": "^2.2.1",
"@actions/io": "^1.1.3",
"ansi-colors": "^4.1.3",
"chalk": "^5.3.0",
"clean-stack": "^5.2.0",
"fastify": "^4.26.2",
"ini": "^4.1.2",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@vercel/ncc": "^0.38.1",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"jest": "^29.7.0",
"nock": "^13.5.4"
}
}