forked from ExodusMovement/seco-keyval
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.28 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
{
"name": "seco-keyval",
"version": "0.7.0",
"description": "Secure key-value store based on secure-container",
"homepage": "https://github.com/ExodusMovement/seco-keyval#readme",
"bugs": {
"url": "https://github.com/ExodusMovement/seco-keyval/issues"
},
"license": "MIT",
"author": "Exodus Movement, Inc.",
"main": "lib/index.js",
"files": [
"lib/",
"!**/test.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ExodusMovement/seco-keyval.git"
},
"scripts": {
"test": "standard && tape -r babel-register **/*.test.js | colortape",
"build": "babel src/ --out-dir lib --ignore test.js",
"posttest": "NODE_ENV=production npm run build"
},
"dependencies": {
"buffer-noise": "^0.1.0",
"fs-extra": "^3.0.1",
"seco-rw": "0.0.2"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^10.1.0",
"babel-plugin-syntax-flow": "^6.18.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-typecheck": "^3.9.0",
"babel-preset-env": "^1.4.0",
"babel-register": "^6.24.1",
"colortape": "^0.1.2",
"standard": "^14.3.4",
"tape": "^4.6.3",
"tape-promise": "^2.0.1",
"tempy": "^0.1.0"
},
"standard": {
"ignore": "lib",
"parser": "babel-eslint"
}
}