-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.55 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.55 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@aetherinox/noxenv",
"version": "1.1.1",
"description": "Set and use environment variables across different platforms.",
"homepage": "https://github.com/Aetherinox/node-noxenv",
"author": "Aetherinox <thebinaryninja@proton.me>",
"main": "src/index.js",
"bin": {
"noxenv": "src/bin/noxenv.js",
"noxenv-shell": "src/bin/noxenv-shell.js"
},
"publishConfig": {
"access": "public"
},
"contributors": [
{
"name": "Aetherinox",
"email": "thebinaryninja@proton.me",
"url": "https://github.com/Aetherinox"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/Aetherinox/node-noxenv.git"
},
"bugs": {
"url": "https://github.com/Aetherinox/node-noxenv/issues"
},
"license": "MIT",
"keywords": [
"aetherinox",
"environment",
"environment variables",
"env variable",
"env",
"env-var",
"windows"
],
"engines": {
"node": ">=20.9.0",
"npm": ">=10",
"yarn": ">=1"
},
"scripts": {
"setup": "npm install && npm run validate -s",
"validate": "kcd-scripts validate",
"build": "kcd-scripts build",
"pretty": "kcd-scripts format",
"lint": "kcd-scripts lint",
"test": "kcd-scripts test",
"test:update": "npm test -- --updateSnapshot --coverage",
"test:main": "noxenv USER_NAME=\"Joe\" npm run test:child",
"test:child": "noxenv-shell \"echo Hello $USER_NAME\"",
"contrib:add": "all-contributors add",
"contrib:generate": "all-contributors generate",
"root": "node root.cjs",
"root:generate": "node root.cjs generate",
"root:root": "npx --quiet env-cmd --no-override node root.cjs",
"root:uuid": "npx --quiet env-cmd --no-override node root.cjs uuid",
"root:guid": "npx --quiet env-cmd --no-override node root.cjs guid",
"root:version": "node -p require('./package.json').version;"
},
"files": [
"src",
"!tests"
],
"devDependencies": {
"@aetherinox/noxenv": "^1.1.0",
"@types/uuid": "^10.0.0",
"all-contributors-cli": "^6.26.1",
"kcd-scripts": "^16.0.0"
},
"dependencies": {
"cross-spawn": "^7.0.6",
"uuid": "^11.1.0"
},
"overrides": {
"concurrently": {
"spawn-command": "1.0.0"
}
},
"eslintConfig": {
"extends": "./node_modules/kcd-scripts/eslint.js"
},
"babel": {}
}