-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.26 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.26 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
{
"name": "envienc",
"version": "2.3.0",
"private": false,
"description": "🔐 Encrypt dotenv, YAML and Hpp values keeping the rest of file intact",
"repository": "https://github.com/imcatwhocode/envienc",
"license": "MIT",
"author": "Dmitry Nourell <hi@imcatwhocode.dev>",
"main": "dist/index.js",
"bin": {
"envienc": "dist/index.js"
},
"files": [
"/dist"
],
"scripts": {
"build": "rimraf dist && tsc && node ./scripts/build-shebang.js",
"build:watch": "rimraf dist && tsc --watch",
"lint": "eslint . && prettier --check .",
"start": "node dist/index.js",
"test": "jest --verbose",
"test:coverage": "jest --coverage --collectCoverageFrom=src/**/*.ts"
},
"prettier": "@vercel/style-guide/prettier",
"dependencies": {
"commander": "^12.0.0",
"enquirer": "^2.4.1",
"glob": "^10.3.10",
"pino": "^8.18.0",
"pino-pretty": "^10.3.1",
"yaml": "^2.3.4",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^18.15.0",
"@vercel/style-guide": "^5.2.0",
"jest": "^29.7.0",
"prettier": "^3.2.4",
"rimraf": "^5.0.5",
"source-map-support": "^0.5.21",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18"
}
}