-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 567 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 567 Bytes
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
{
"name": "@fnando/keyring",
"version": "0.4.0",
"description": "Simple encryption-at-rest with key rotation. Includes sequelize support.",
"main": "keyring.js",
"repository": "https://github.com/fnando/keyring-node.git",
"author": "Nando Vieira",
"license": "MIT",
"scripts": {
"test": "mocha 'test/**/*_test.js' --ui tdd"
},
"keywords": [
"encryption",
"crypt",
"crypto",
"sequelize",
"plugin"
],
"devDependencies": {
"chai": "*",
"mocha": "*",
"pg": "*",
"sequelize": "6.x",
"sqlite3": "*"
}
}