-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.45 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
{
"name": "wal",
"version": "0.9.3",
"description": "An implementation of write-ahead logging (WAL) for nodejs.",
"keywords": [
"wal",
"write-ahead",
"log",
"automic",
"durable"
],
"main": "index.js",
"scripts": {
"docs": "esdoc -c ./esdoc.json",
"docs:watch": "chokidar -i doc -c 'npm run doc' .",
"lint": "eslint .",
"test": "tape -r babel-register test/**/*.test.js | tap-spec",
"test:watch": "chokidar . -c 'npm test'",
"cover": "istanbul cover test",
"ci": "npm run lint && npm test",
"clean": "rm -rf ./build ./coverage .coverag*",
"build": "npm run clean && babel src/ -s inline -d build/",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/LeisureLink/write-ahead-log"
},
"author": "pclark@leisurelink.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/LeisureLink/write-ahead-log/issues"
},
"homepage": "https://github.com/LeisureLink/write-ahead-log",
"dependencies": {
"assert-plus": "^1.0.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"
}
}