generated from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.43 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
{
"name": "github-action-build",
"version": "1.1.4",
"description": "Github Action to automate the login process on Nullplatform",
"main": "src/index.js",
"scripts": {
"lint": "npx eslint .",
"lint:fix": "npx eslint . --fix",
"prepare:husky": "husky install",
"prepare": "ncc build src/index.js -o dist --source-map --license licenses.txt",
"update:version": "./update-version.sh",
"test": "jest",
"prettier": "npx prettier --write .",
"all": "npm run lint && npm run prepare && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nullplatform/github-action-build.git"
},
"keywords": [
"GitHub",
"Actions",
"Nullplatform",
"Login"
],
"author": "Pablo Vilas <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nullplatform/github-action-build/issues"
},
"homepage": "https://github.com/nullplatform/github-action-build#readme",
"dependencies": {
"@actions/core": "1.10.0",
"@actions/github": "5.1.1",
"@actions/http-client": "2.1.0",
"dotenv": "16.0.3"
},
"devDependencies": {
"@vercel/ncc": "0.36.1",
"eslint": "8.38.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jest-extended": "2.0.0",
"husky": "8.0.3",
"jest": "29.5.0",
"jest-extended": "3.2.4",
"prettier": "2.8.7"
}
}