forked from smallhelm/level-hash-index
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.51 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
{
"name": "level-hash-index",
"version": "0.1.2",
"description": "Store any string into level, and get a collision free hash of that value that you can use in an index or something.",
"main": "lib/index.js",
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/smallhelm/level-hash-index.git"
},
"keywords": [
"level",
"levelup",
"leveldb"
],
"author": "smallhelm",
"license": "MIT",
"bugs": {
"url": "https://github.com/smallhelm/level-hash-index/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": {
"level-errors": "^1.0.3"
},
"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",
"lodash": "^3.6.0",
"memdown": "^1.0.0",
"prettier-standard": "^5.0.0",
"tap-dot": "^1.0.0",
"tape": "^4.0.0"
}
}