This repository has been archived by the owner on Nov 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.49 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
{
"name": "text-crypt-cli",
"version": "0.0.2",
"description": "CLI for text-crypt Node.js library",
"engines": {
"node": ">= 12.0.0",
"npm": ">= 6.0.0"
},
"engineStrict": true,
"main": "./bin/index.js",
"bin": {
"text-crypt-cli": "./bin/index.js"
},
"preferGlobal": true,
"scripts": {
"add_shebang": "node ./scripts/add_shebang.js",
"build": "tsc && npm run add_shebang",
"build:watch": "tsc --watch",
"lint": "eslint -c ./.eslintrc.js --resolve-plugins-relative-to ./ './src/**/*.ts'",
"lint:fix": "eslint --fix -c ./.eslintrc.js --resolve-plugins-relative-to ./ './src/**/*.ts'",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/valera-rozuvan/text-crypt-cli.git"
},
"keywords": [
"crypto",
"encryption",
"text",
"cli"
],
"author": "Valera Rozuvan",
"license": "MIT",
"bugs": {
"url": "https://github.com/valera-rozuvan/text-crypt-cli/issues"
},
"homepage": "https://github.com/valera-rozuvan/text-crypt-cli#readme",
"dependencies": {
"arg": "^5.0.0",
"text-crypt": "0.0.6"
},
"devDependencies": {
"typescript": "^4.0.2",
"@types/node": "^12.12.56",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"eslint": "^7.11.0",
"prepend-file": "1.3.1"
},
"files": [
"bin/",
".gitignore",
"LICENSE",
"README.md",
"package-lock.json",
"package.json"
]
}