-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.14 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.14 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
38
39
40
41
42
43
44
45
{
"name": "@architect/env",
"version": "6.0.1",
"description": "Manage your Architect app's environment variables",
"main": "src/index.js",
"bin": {
"arc-env": "src/cli.js"
},
"scripts": {
"test": "npm run lint && npm run coverage",
"test:nolint": "npm run coverage",
"test:unit": "node --test 'test/**/*-tests.js'",
"coverage": "node --test --experimental-test-coverage 'test/**/*-tests.js'",
"lint": "eslint . --fix",
"rc": "npm version prerelease --preid RC"
},
"engines": {
"node": ">=22"
},
"repository": {
"type": "git",
"url": "git+https://github.com/architect/env.git"
},
"keywords": [],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/architect/env/issues"
},
"homepage": "https://github.com/architect/env#readme",
"files": [
"src/*"
],
"dependencies": {
"@architect/inventory": "~6.0.0",
"@architect/parser": "~8.0.1",
"@architect/utils": "~6.0.1",
"@aws-lite/client": "^0.23.2",
"@aws-lite/ssm": "^0.2.3",
"dotenv": "~17.2.3"
},
"devDependencies": {
"@architect/eslint-config": "~3.0.0",
"eslint": "~9.39.1"
}
}