This repository has been archived by the owner on Sep 5, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
85 lines (85 loc) · 2.14 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
76
77
78
79
80
81
82
83
84
85
{
"name": "sniptt",
"version": "0.0.51",
"description": "A simple developer-friendly CLI for managing secrets",
"main": "./build/cli.js",
"bin": {
"sniptt": "./build/cli.js",
"snip": "./build/cli.js"
},
"engines": {
"node": ">=14.0.0"
},
"files": [
"/assets",
"/build"
],
"keywords": [
"cli",
"encryption",
"openpgp",
"end-to-end-encryption",
"secrets-management",
"vault",
"secrets",
"sharing-secrets"
],
"author": "Sniptt <[email protected]> (sniptt.com)",
"license": "MIT",
"homepage": "https://github.com/sniptt-official/snip",
"bugs": "https://github.com/sniptt-official/snip/issues",
"scripts": {
"test": "ava",
"test:ci": "nyc ava --fail-fast",
"build": "tsc",
"package:linux": "pkg . --no-bytecode --targets node14-linux-x64 --output bin/linux/snip",
"package:macos": "pkg . --no-bytecode --targets node14-macos-x64 --output bin/macos/snip",
"format": "prettier --loglevel warn --write \"**/*.{ts,js,json,yaml}\"",
"format:check": "prettier --loglevel warn --check \"**/*.{ts,js,json,yaml}\"",
"lint": "eslint \"src/**/*.ts\" --fix",
"lint:check": "eslint \"src/**/*.ts\""
},
"dependencies": {
"@sniptt/snip-sdk-js": "0.0.6",
"base64url": "3.0.1",
"chalk": "4.1.1",
"cli-table": "0.3.6",
"enquirer": "2.3.6",
"fs-extra": "10.0.0",
"keytar": "7.7.0",
"openpgp": "5.0.0-3",
"ora": "5.4.1",
"unique-names-generator": "4.6.0",
"yargs": "17.0.1",
"yup": "0.32.9"
},
"devDependencies": {
"@types/cli-table": "0.3.0",
"@types/faker": "5.5.7",
"@types/fs-extra": "9.0.12",
"@types/node": "16.0.1",
"@types/yargs": "17.0.2",
"@typescript-eslint/eslint-plugin": "4.28.2",
"@typescript-eslint/parser": "4.28.2",
"ava": "3.15.0",
"eslint": "7.30.0",
"eslint-config-prettier": "8.3.0",
"faker": "5.5.3",
"nyc": "15.1.0",
"pkg": "5.3.0",
"prettier": "2.3.2",
"ts-node": "10.0.0",
"typescript": "4.3.5"
},
"pkg": {
"scripts": "build/**/*.js"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}