-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
31 lines (31 loc) · 890 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
{
"name": "random-access-pause-wrapper",
"version": "1.0.0",
"description": "Pause wrapper for a random-access-storage that adds a pause/resume method.",
"main": "index.js",
"scripts": {
"test": "standard && tape *.test.js"
},
"keywords": [
"random-access-storage"
],
"author": "Martin Heidegger <martin.heidegger@gmail.com>",
"license": "MIT",
"dependencies": {
"inherits": "^2.0.3",
"random-access-storage": "^1.3.0"
},
"devDependencies": {
"random-access-memory": "^3.0.0",
"standard": "^12.0.1",
"tape": "^4.9.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/martinheidegger/random-access-pause-wrapper.git"
},
"bugs": {
"url": "https://github.com/martinheidegger/random-access-pause-wrapper/issues"
},
"homepage": "https://github.com/martinheidegger/random-access-pause-wrapper#readme"
}