-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 818 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 818 Bytes
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
{
"name": "level-promisify",
"version": "2.0.1",
"description": "Level with promises",
"main": "dist/index.js",
"scripts": {
"test": "tape ./spec/*.js",
"build": "rm -rf dist && babel lib --out-dir dist",
"watch": "babel --watch lib --out-dir dist",
"prepublish": "npm run build"
},
"keywords": [
"level",
"leveldb",
"promise",
"es6"
],
"repository": {
"type": "git",
"url": "git://github.com/mattstyles/level-promisify.git"
},
"bugs": {
"url": "https://github.com/mattstyles/level-promisify/issues"
},
"homepage": "https://github.com/mattstyles/level-promisify",
"author": "Matt Styles @personalurban",
"license": "ISC",
"dependencies": {
},
"devDependencies": {
"babel": "^4.7.8",
"level": "^0.18.0",
"tape": "^3.5.0"
}
}