-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
63 lines (63 loc) · 1.53 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
{
"name": "ansible-vault",
"version": "1.3.0",
"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 <commenthol@gmail.com>",
"type": "module",
"main": "./lib/index.cjs",
"module": "./src/index.js",
"types": "./types/index.d.ts",
"files": [
"lib",
"src",
"types"
],
"exports": {
".": {
"import": "./src/index.js",
"require": "./lib/index.cjs",
"types": "./types/index.d.ts"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "rollup -c rollup.config.js",
"clear": "rimraf lib types",
"ci": "npm-run-all clear build coverage lint types",
"coverage": "c8 -r lcov -r html -r text mocha",
"lint": "eslint src test",
"test": "mocha",
"types": "tsc"
},
"dependencies": {},
"devDependencies": {
"@types/node": "^20.14.12",
"c8": "^10.1.2",
"debug": "^4.3.6",
"eslint": "^9.7.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.8.0",
"mocha": "^10.7.0",
"npm-run-all2": "^6.2.2",
"rimraf": "^6.0.1",
"rollup": "^4.19.1",
"typescript": "^5.5.4"
},
"engines": {
"node": ">=18.0.0"
}
}