forked from ExodusMovement/seco-file
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.39 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
{
"name": "seco-file",
"description": "Methods to read/write secure containers to files.",
"version": "2.0.0",
"author": "Exodus Movement, Inc.",
"bugs": {
"url": "https://github.com/exodusmovement/seco-file/issues"
},
"dependencies": {
"fs-extra": "^5.0.0",
"secure-container": "^2.0.0"
},
"devDependencies": {
"@babel/cli": "^7.22.6",
"@babel/core": "^7.22.8",
"@babel/eslint-parser": "^7.22.7",
"@babel/plugin-transform-modules-commonjs": "^7.22.5",
"@babel/preset-flow": "^7.22.5",
"@babel/register": "^7.22.5",
"aw": "^0.1.0",
"standard": "^11.0.0",
"tap-spec": "^4.1.1",
"tape": "^4.5.1",
"tape-promise": "^2.0.1"
},
"engines": {
"node": ">= 18.0.0"
},
"files": [
"lib/"
],
"homepage": "https://github.com/exodusmovement/seco-file#readme",
"keywords": [
"seco",
"secure",
"container",
"fs"
],
"license": "MIT",
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/exodusmovement/seco-file.git"
},
"scripts": {
"build": "babel src --out-dir lib",
"lint": "standard",
"prepare": "npm test",
"test": "npm run lint && npm run unit",
"posttest": "npm run build",
"unit": "find ./tests -name *.test.js -exec node -r @babel/register {} \\; | tap-spec"
},
"standard": {
"ignore": "lib/",
"parser": "@babel/eslint-parser"
}
}