forked from commenthol/ansible-vault
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.05 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
{
"name": "ansible-vault",
"version": "1.1.1",
"description": "An ansible vault compatible en- and decryption library for javascript",
"keywords": [
"ansible",
"vault"
],
"homepage": "https://github.com/commenthol/ansible-vault#readme",
"bugs": {
"url": "https://github.com/commenthol/ansible-vault/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/commenthol/ansible-vault.git"
},
"license": "MIT",
"author": "commenthol <[email protected]>",
"main": "src",
"types": "types",
"files": [
"src",
"types"
],
"scripts": {
"ci": "npm run coverage && npm run lint && npm run types",
"coverage": "c8 -r lcov -r html -r text mocha",
"lint": "eslint src test",
"prepublishOnly": "npm run ci",
"test": "mocha",
"types": "rm -r types; tsc"
},
"dependencies": {
"binascii": "0.0.2"
},
"devDependencies": {
"@types/node": "^20.7.1",
"c8": "^8.0.1",
"debug": "^4.3.4",
"eslint": "^8.50.0",
"mocha": "^10.2.0",
"typescript": "^5.2.2"
}
}