-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
44 lines (44 loc) · 1.04 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": "password-safe",
"version": "0.0.3",
"description": "Library to work with Password Safe files (.psafe3).",
"author": "Dominic Luechinger",
"keywords": [
"password",
"safe",
"database",
"security"
],
"repository": {
"type": "git",
"url": "http://github.com/dol/node-passwordsafe.git"
},
"bugs": {
"url": "http://github.com/dol/node-passwordsafe/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://raw.github.com/dol/node-passwordsafe/master/LICENSE"
}
],
"main": "./index",
"engines": {
"node": ">= 0.10.0"
},
"dependencies": {
"binary": "~0.3.0",
"triplesec": "~4.0.3",
"crypto-js": "~4.2.0",
"buffer-equal": "~1.0.1",
"node-uuid": "~1.4.1"
},
"devDependencies": {
"mocha": "~10.3.0",
"should": "~13.2.3"
},
"scripts": {
"test": "mocha --reporter spec",
"update-spec": "curl -o doc/formatV3.txt --fail --silent --show-error http://sourceforge.net/p/passwordsafe/git-code/ci/master/tree/docs/formatV3.txt?format=raw"
}
}