-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
48 lines (44 loc) · 1.09 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": "keepass.io",
"version": "1.1.4",
"description": "Node.js library for reading and writing KeePass databases",
"keywords": [
"keepass",
"kdbx",
"kdb4",
"reader",
"writer",
"password",
"keyfile",
"security"
],
"license": "GPL-3.0",
"author": "Pascal Mathis <[email protected]> (https://www.pascalmathis.com)",
"contributors": [],
"homepage": "https://www.snapserv.net/projects/keepass.io",
"bugs": "https://github.com/NeoXiD/keepass.io/issues",
"repository": {
"type": "git",
"url": "https://github.com/NeoXiD/keepass.io.git"
},
"main": "./lib/index.js",
"scripts": {
"install": "(node-gyp rebuild 2>&1) || (echo 'DO NOT WORRY ABOUT THESE MESSAGES. KEEPASS.IO WILL FALLBACK TO SLOWER NODE.JS METHODS, SO THERE ARE NO LIMITATIONS EXCEPT SLOWER PERFORMANCE.'; exit 0)",
"test": "mocha --reporter spec"
},
"engines": {
"node": ">=0.10.x"
},
"dependencies": {
"dejavu": "~0.4.8",
"async": "~1.3.0",
"xml2js": "~0.4.9",
"nan": "~1.8.4"
},
"devDependencies": {
"should": "~7.0.1",
"mocha": "~2.2.5",
"istanbul": "~0.3.17",
"coveralls": "~2.11.2"
}
}