forked from smallhelm/level-fact-base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.67 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "level-fact-base",
"version": "0.1.0",
"description": "Store \"facts\" in level and query them via datalog",
"main": "lib/index.js",
"files": [
"lib"
],
"keywords": [
"level",
"levelup",
"leveldb",
"datalog",
"datomic",
"db",
"database",
"immutable"
],
"author": "smallhelm",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/smallhelm/level-fact-base.git"
},
"bugs": {
"url": "https://github.com/smallhelm/level-fact-base/issues"
},
"scripts": {
"build": "babel src --out-dir lib",
"format": "prettier-standard 'src/**/*.js' 'test/**/*.js'",
"lint": "eslint 'src/**/*.js' 'test/**/*.js'",
"precommit": "lint-staged",
"prepare": "npm run build",
"prepublish": "npm run build",
"test": "node test/index.js | tap-dot"
},
"lint-staged": {
"*.js": [
"prettier-standard",
"eslint",
"git add"
]
},
"dependencies": {
"escape-regexp": "^0.0.1",
"level-errors": "^1.0.3",
"level-hash-index": "github:miguelsm/level-hash-index#6f276eea09c17604b2d578bbfd1b0cc5c73173ec",
"lodash": "^3.8.0",
"p-queue": "^1.1.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.24.1",
"eslint": "^4.3.0",
"gent": "^0.6.2",
"husky": "^0.13.4",
"levelup": "^0.19.0",
"lint-staged": "^3.6.0",
"memdown": "^1.0.0",
"prettier-standard": "^5.0.0",
"tap-dot": "^1.0.0",
"tape": "^4.8.0"
}
}