-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 1.12 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
{
"name": "confy-cli",
"version": "0.0.5",
"main": "src/encoder.js",
"bin": {
"confy": "src/encoder.js"
},
"scripts": {
"test": "node src/encoder.js",
"test-input": "node src/encoder.js -k some_key -i examples/input.html -o output.html && firefox output.html && firefox output.html?key=some_key",
"test-key": "node src/encoder.js -i examples/key.html -o output.html && firefox output.html && firefox output.html?key=magic_key",
"test-nested": "node src/encoder.js -i examples/nested.html -o output.html && firefox output.html && firefox output.html?key=first_key",
"test-style": "node src/encoder.js -i examples/style.html -o output.html && firefox output.html && firefox output.html?key=magic_key"
},
"dependencies": {
"command-line-args": "^6.0.0",
"command-line-usage": "^7.0.3",
"jsdom": "^24.1.1"
},
"directories": {
"example": "examples"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dimchee/confy.git"
},
"homepage": "https://github.com/dimchee/confy#Readme.md",
"author": "dimchee",
"license": "MIT",
"description": "CLI program for storing confidential data on public domains"
}