forked from LeisureLink/block-file
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.49 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
{
"name": "block-file",
"version": "0.1.0",
"description": "A block-read, buffered, random-access file implementation for nodejs.",
"keywords": [],
"main": "index.js",
"scripts": {
"docs": "esdoc -c ./esdoc.json",
"docs:watch": "chokidar -i doc -c 'npm run doc' .",
"lint": "eslint .",
"pretest": "npm run build",
"test": "tape -r babel-register test/**/*.test.js | tap-spec",
"test:watch": "chokidar -i build . -c 'npm test'",
"cover": "istanbul cover test",
"ci": "npm run lint && npm test",
"clean": "rm -rf ./build ./coverage .coverag*",
"rebuild": "npm run clean && babel src/ -s inline -d build/",
"build": "babel src/ -s inline -d build/",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/LeisureLink/block-read"
},
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/LeisureLink/block-read/issues"
},
"homepage": "https://github.com/LeisureLink/block-read",
"dependencies": {
"assert-plus": "^1.0.0",
"btreejs": "^0.3.0",
"es6-promisify": "^4.0.0",
"ranfile": "^1.0.2"
},
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-core": "^6.8.0",
"babel-eslint": "^6.0.4",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.8.0",
"chokidar-cli": "^1.2.0",
"deep-equal": "^1.0.1",
"esdoc": "^0.4.7",
"istanbul": "^0.4.3",
"tap-spec": "^4.1.1",
"tape": "^4.5.1",
"tmp": "0.0.28"
}
}