-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.02 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
{
"name": "ctan-submit-action",
"version": "1.0.0",
"description": "Performs a submit on the CTAN API to validate or upload a package",
"main": "index.js",
"scripts": {
"lint": "eslint src/*.js test/*.js",
"prepare": "ncc build src/index.js -o dist --source-map --license licenses.txt",
"test": "jest",
"all": "npm run lint && npm run prepare && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paolobrasolin/ctan-submit-action.git"
},
"keywords": [
"CTAN",
"LaTeX",
"TeX"
],
"author": "Paolo Brasolin",
"license": "MIT",
"bugs": {
"url": "https://github.com/paolobrasolin/ctan-submit-action/issues"
},
"homepage": "https://github.com/paolobrasolin/ctan-submit-action",
"dependencies": {
"@actions/core": "^1.6.0",
"request": "^2.88.2",
"yaml": "^1.10.2"
},
"devDependencies": {
"@vercel/ncc": "^0.32.0",
"eslint": "^8.2.0",
"eslint-plugin-jest": "^25.2.4",
"jest": "^27.3.1",
"rewire": "^5.0.0"
}
}