-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.49 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
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "gitpod-env-per-project",
"version": "2.0.37",
"description": "GitPod helper command for project-specific environment variables.",
"keywords": [
"conflict",
"gitpod",
"helper",
"multiple",
"naming",
"per",
"project",
"repository",
"scope",
"specific",
"variable",
"variables"
],
"repository": "dword-design/gitpod-env-per-project",
"funding": "https://github.com/sponsors/dword-design",
"license": "MIT",
"author": "Sebastian Landwehr <info@sebastianlandwehr.com>",
"type": "module",
"exports": "./dist/index.js",
"main": "dist/index.js",
"bin": {
"gitpod-env-per-project": "./dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"checkUnknownFiles": "base checkUnknownFiles",
"commit": "base commit",
"depcheck": "base depcheck",
"dev": "base dev",
"lint": "base lint",
"prepare": "base prepare",
"prepublishOnly": "base prepublishOnly",
"test": "base test"
},
"dependencies": {
"@dword-design/functions": "^4.0.0",
"constant-case": "^3.0.4",
"load-pkg": "^4.0.0",
"parse-packagejson-name": "^1.0.1",
"sort-keys": "^5.0.0"
},
"devDependencies": {
"@dword-design/base": "^9.4.7",
"@dword-design/tester": "^2.0.0",
"@dword-design/tester-plugin-env": "^2.0.0",
"@dword-design/tester-plugin-tmp-dir": "^2.0.0",
"execa": "^7.1.0",
"output-files": "^2.0.11"
},
"engines": {
"node": ">=14"
},
"publishConfig": {
"access": "public"
}
}