-
Notifications
You must be signed in to change notification settings - Fork 74
/
package.json
42 lines (42 loc) · 1.15 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
{
"name": "create-envfile",
"version": "2.0.0",
"private": true,
"description": "Github Action to create a .env file with Github Secrets ",
"main": "lib/main.js",
"scripts": {
"build": "tsc --project tsconfig.build.json",
"format": "prettier --write \"**/*.ts\"",
"format-check": "prettier --check \"**/*.ts\"",
"lint": "eslint src --ext .ts",
"package": "ncc build --source-map --license licenses.txt",
"all": "yarn run build && yarn run format && yarn run lint && yarn run package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SpicyPizza/create-envfile"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "Forest Anderson",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.2",
"@types/node": "^20.8.7",
"@typescript-eslint/parser": "^5.59.2",
"@vercel/ncc": "^0.36.1",
"eslint": "^8.45.0",
"eslint-plugin-github": "^4.7.0",
"eslint-plugin-jest": "^27.2.3",
"js-yaml": "^4.1.0",
"prettier": "^2.8.8",
"typescript": "^5.1.6"
},
"packageManager": "[email protected]"
}