-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.59 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
{
"name": "piecemeta-lmdb",
"version": "0.1.0",
"description": "Storage abstraction for the PieceMeta API server using LMDB",
"main": "dist/piecemeta-lmdb.js",
"engines": {
"node": ">=3.3"
},
"scripts": {
"test": "./node_modules/.bin/mocha --compilers js:babel-core/register test/",
"build": "./node_modules/.bin/babel ./src/ --out-dir ./dist/ --extensions .es6",
"cover": "./node_modules/.bin/babel-node node_modules/.bin/isparta cover node_modules/mocha/bin/_mocha -- --reporter dot test/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PieceMeta/node-piecemeta-lmdb.git"
},
"keywords": [
"piecemeta",
"storage"
],
"author": "Anton Koch <[email protected]> (http://htmhell.de)",
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/PieceMeta/node-piecemeta-lmdb/issues"
},
"homepage": "https://github.com/PieceMeta/node-piecemeta-lmdb#readme",
"dependencies": {
"assert-plus": "1.0.0",
"bluebird": "3.0.5",
"fs-extra": "0.30.0",
"msgpack": "1.0.2",
"nedb": "1.7.4",
"node-lmdb": "git+https://github.com/Venemo/node-lmdb.git",
"schema-object": "4.0.0",
"secure-random": "1.1.1",
"sha1": "1.1.1",
"uuid4": "git+https://github.com/tracker1/node-uuid4.git",
"uuidv5": "0.0.0"
},
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-core": "^6.4.5",
"babel-plugin-transform-runtime": "^6.4.3",
"babel-polyfill": "^6.5.0",
"babel-preset-es2015": "^6.3.13",
"babel-runtime": "^6.3.19",
"chai": "^3.5.0",
"isparta": "^4.0.0",
"mocha": "^2.4.5"
}
}