-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.52 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
52
{
"name": "assignment-action",
"version": "1.0.0",
"description": "Utility for testing assignments",
"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 --colors --runInBand"
},
"jest": {
"modulePathIgnorePatterns": [
"<rootDir>/tmp"
],
"globalSetup": "<rootDir>/global-setup.js",
"globalTeardown": "<rootDir>/global-teardown.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Hexlet/assignment-action.git"
},
"author": "Hexlet",
"license": "ISC",
"bugs": {
"url": "https://github.com/Hexlet/assignment-action/issues"
},
"homepage": "https://github.com/Hexlet/assignment-action#readme",
"devDependencies": {
"@vercel/ncc": "^0.34.0",
"ajv": "^8.11.2",
"eslint": "^8.27.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.5",
"fastify-cli": "^5.5.1",
"jest": "^29.3.1",
"jest-dev-server": "^6.1.1",
"nock": "^13.2.9"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/http-client": "^2.0.1",
"@actions/io": "^1.1.2",
"ansi-colors": "^4.1.3",
"clean-stack": "^5.0.1",
"fs-extra": "^10.1.0",
"lodash": "^4.17.21"
}
}