forked from falti/dotenv-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 902 Bytes
/
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
{
"name": "dotenv-action",
"version": "1.0.0",
"description": "Load variables from a .env file",
"main": "index.js",
"scripts": {
"lint": "eslint index.js",
"package": "ncc build index.js --minify --v8-cache",
"test": "eslint index.js && jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/falti/dotenv-action.git"
},
"keywords": [
"GitHub",
"Actions",
"JavaScript"
],
"author": "GitHub",
"license": "MIT",
"bugs": {
"url": "https://github.com/falti/dotenv-action/issues"
},
"homepage": "https://github.com/falti/dotenv-action#readme",
"dependencies": {
"@actions/core": "^1.10",
"dotenv": "^16.0.3",
"dotenv-expand": "^9.0.0"
},
"devDependencies": {
"@vercel/ncc": "^0.34.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.6.0",
"jest": "^29.3.1",
"prettier": "2.8.4"
}
}