-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
41 lines (41 loc) · 954 Bytes
/
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
{
"name": "scattered-store",
"description": "Key-value store for large datasets",
"version": "1.0.1",
"author": "Jakub Szwacz <[email protected]>",
"keywords": [
"key-value",
"key",
"value",
"store",
"storage"
],
"dependencies": {
"fs-jetpack": "^2.2.0",
"q": "^1.5.1"
},
"devDependencies": {
"jasmine": "^2.1.0",
"pre-commit": "^1.2.2",
"release-assist": "^1.0.1",
"underscore": "^1.7.0"
},
"main": "lib/core.js",
"homepage": "https://github.com/szwacz/scattered-store",
"repository": {
"type": "git",
"url": "https://github.com/szwacz/scattered-store.git"
},
"licence": "MIT",
"pre-commit": [
"test"
],
"scripts": {
"test": "node_modules/.bin/jasmine",
"benchmark": "node benchmark/benchmark",
"lint": "eslint .",
"lint-staged": "lint-staged",
"release-start": "release-assist --start",
"release-finish": "release-assist --finish"
}
}