-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.9 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
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "ciphenv",
"version": "3.0.2",
"description": "Ciphenv (Ciphered Env) is a tool for encrypting and decrypting .env* files using prefixes to indicate values to encrypt.",
"module": "lib/index.js",
"main": "lib/index.cjs",
"types": "lib/index.d.ts",
"bin": {
"ciphenv": "lib/cli.cjs"
},
"files": [
"lib/*",
"!lib/types.*"
],
"scripts": {
"start": "nodemon --config nodemon.json --exec \"npm run dev\"",
"dev": "rimraf lib tests/.env.* && tsc && npm link && npm test",
"test": "mocha ./tests/*.test.ts",
"devbuild": "npm run build && npm link",
"prebuild": "rimraf lib",
"build": "rollup --config rollup.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dvdprrsh/Ciphenv.git"
},
"keywords": [
".env",
"cipher",
"ciphered",
"ciphered-env",
"dotenv",
"encrypted-env",
"secure-env",
"secure",
"encrypted",
"environment",
"variables"
],
"author": "dvdprrsh",
"license": "MIT",
"bugs": {
"url": "https://github.com/dvdprrsh/Ciphenv/issues"
},
"homepage": "https://github.com/dvdprrsh/Ciphenv#readme",
"peerDependencies": {
"dotenv": ">=8.0.0"
},
"dependencies": {
"constant-case": "^3.0.4",
"yargs": "^17.5.1"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.5.0",
"@types/chai": "^4.3.3",
"@types/mocha": "^9.1.1",
"@types/node": "^16.11.58",
"@types/yargs": "^17.0.12",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"chai": "^4.3.6",
"dotenv": "^16.0.2",
"eslint": "^8.23.1",
"eslint-plugin-mocha": "^10.1.0",
"execa": "^6.1.0",
"mocha": "^10.0.0",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"rollup": "^2.79.0",
"rollup-plugin-node-externals": "^5.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
}
}