-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1012 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 1012 Bytes
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
{
"name": "private-packagist-upload-action",
"version": "1.0.0",
"description": "GitHub Action to upload artifacts to Private Packagist",
"main": "index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"validate": "npm run lint && npm run test",
"clean": "rm -rf coverage/ *.log",
"build": "ncc build index.js -o dist --source-map --license licenses.txt",
"package": "npm run clean && npm run validate && npm run build"
},
"keywords": [
"github-action",
"private-packagist",
"composer",
"artifact-upload"
],
"author": "Arbor Education",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"node-fetch": "^2.7.0"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@eslint/js": "^9.34.0",
"@vercel/ncc": "^0.38.3",
"eslint": "^9.34.0",
"globals": "^16.3.0",
"jest": "^30.1.1"
}
}