-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.06 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.06 KB
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
{
"name": "string-env-parser",
"version": "1.0.0",
"description": "Are you tired of repeating and duplicating environment variables for environment specific deployment steps and having to maintain multiple workflows dependent on the same set of variables?",
"main": "index.js",
"exports": "./dist/parser.js",
"author": "Ivan Barayev",
"license": "ISC",
"type": "module",
"scripts": {
"build": "ncc build src/index.js",
"clean": "rm -rf ./dist",
"format": "prettier --write .",
"lint": "xo .",
"move-major-tag": "node scripts/move-major-tag.js",
"test": "vitest run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TeamlifyLLC/string-env-parser.git"
},
"bugs": {
"url": "https://github.com/TeamlifyLLC/json-env-parser/issues"
},
"homepage": "https://github.com/TeamlifyLLC/json-env-parser#readme",
"dependencies": {
"@actions/core": "^1.10.1",
"dotenv": "^16.4.5"
},
"devDependencies": {
"@vercel/ncc": "^0.38.1"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
}
}