-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.45 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.45 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "github-actions-deploy",
"version": "2.0.0",
"description": "The GitHub Actions for Digital.ai Deploy",
"homepage": "https://github.com/digital-ai/github-actions-deploy#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/digital-ai/github-actions-deploy.git"
},
"bugs": {
"url": "https://github.com/digital-ai/github-actions-deploy/issues"
},
"scripts": {
"package": "npx ncc build src/index.js -o dist --source-map --license licenses.txt",
"test": "npx jest",
"all": "npm run test && npm run package"
},
"keywords": [
"Digital.ai Deploy",
"GitHub",
"Actions",
"JavaScript"
],
"author": "Digital.ai",
"license": "MIT",
"dependencies": {
"@actions/github": "^6.0.0"
},
"devDependencies": {
"@actions/core": "^1.11.1",
"@jest/core": "^29.7.0",
"@types/jest": "^29.5.14",
"@vercel/ncc": "^0.38.3",
"archiver": "^7.0.1",
"axios": "^1.9.0",
"jest": "^29.7.0",
"node-stream-zip": "^1.15.0",
"xml2js": "^0.6.2"
},
"jest": {
"verbose": true,
"clearMocks": true,
"testEnvironment": "node",
"moduleFileExtensions": [
"js"
],
"testMatch": [
"**/*.test.js"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
],
"coverageReporters": [
"json-summary",
"text",
"lcov"
],
"collectCoverage": true,
"collectCoverageFrom": [
"./src/**"
]
}
}