-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.11 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.11 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
{
"name": "yaml-crypt",
"version": "0.7.8",
"description": "Encrypt and decrypt YAML documents",
"license": "MIT",
"author": "Pascal",
"homepage": "https://github.com/autoapply/yaml-crypt",
"repository": {
"type": "git",
"url": "https://github.com/autoapply/yaml-crypt.git"
},
"main": "./lib/yaml-crypt.js",
"types": "./lib/index.d.ts",
"bin": {
"yaml-crypt": "./bin/yaml-crypt-cli.js"
},
"scripts": {
"lint": "eslint . && prettier -l */**.js */**.ts",
"test": "nyc mocha --timeout=8000 --check-leaks",
"test:coverage": "nyc --reporter=lcov mocha",
"build": "yarn lint && yarn test:coverage",
"prepublish": "yarn build"
},
"dependencies": {
"argparse": "^2.0.1",
"branca": "^0.5.0",
"fernet": "^0.4.0",
"js-yaml": "^4.1.0",
"pkginfo": "^0.4.1",
"tmp": "^0.2.1",
"urlsafe-base64": "^1.0.0"
},
"devDependencies": {
"chai": "^4.3.10",
"coveralls": "^3.1.1",
"eslint": "^8.55.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"prettier": "^3.1.1"
},
"prettier": {
"trailingComma": "none",
"arrowParens": "avoid"
}
}