-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 858 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 858 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
{
"name": "create-env-file",
"version": "3.1.2",
"description": "Create a .env file in a github runner from environment variables. Can be used prior to the build step of an app",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"build": "npx ts-node buildScript.ts"
},
"author": "Arky Asmal",
"license": "ISC",
"devDependencies": {
"@actions/core": "=1.10.0",
"@actions/github": "=5.1.1",
"@babel/core": "=7.21.4",
"@babel/preset-env": "=7.21.4",
"@babel/preset-typescript": "=7.21.4",
"@types/jest": "=29.5.1",
"@types/mv": "=2.1.2",
"@types/node": "=18.15.11",
"@zeit/ncc": "=0.22.3",
"babel-jest": "=29.5.0",
"dotenv": "=16.0.3",
"esbuild": "=0.17.4",
"fs": "=0.0.1-security",
"mv": "=2.1.1",
"path": "=0.12.7"
},
"dependencies": {
"jest": "=29.5.0"
}
}