-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 985 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
{
"name": "write-pointers",
"version": "1.2.0",
"description": "A simple class to manage indices to a data store with an autonumber indexing system and a lazy erase algorithm",
"main": "lib/index.js",
"scripts": {
"test": "pwd && NODE_PATH=$(pwd) mocha ./test/index.js | ./.bin/bunyan",
"build": "babel ./src/index.js -o ./lib/index.js",
"jsdoc": "jsdoc -r src -d docs",
"prepublish": "npm run build"
},
"keywords": [
"lazy",
"erase",
"data",
"store",
"index",
"autonumber"
],
"author": "Robert LaMarca",
"license": "GPL-2.0",
"repository": {
"type": "git",
"url": "https://github.com/bobbwhy/write-pointers.git"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-core": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-register": "^6.9.0",
"bunyan": "^1.8.1",
"chai": "^3.5.0",
"jsdoc": "^3.4.0",
"mocha": "^2.4.5"
},
"dependencies": {
"array-range": "^1.0.1"
}
}