-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1 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
{
"name": "beepboop-persist",
"version": "1.0.0",
"description": "A javascript client to the BeepBoop Persist key/value store",
"main": "index.js",
"scripts": {
"test": "standard && mocha test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BeepBoopHQ/beepboop-js-persist.git"
},
"keywords": [
"beepboop",
"keyvalue",
"persist"
],
"author": "Mike Brevoort <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/BeepBoopHQ/beepboop-js-persist/issues"
},
"homepage": "https://github.com/BeepBoopHQ/beepboop-js-persist#readme",
"dependencies": {
"deap": "^1.0.0",
"fs-extra": "^0.30.0",
"wreck": "^7.2.0"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^2.4.5",
"nock": "^8.0.0",
"restify": "^4.1.1",
"standard": "^7.0.1"
},
"standard": {
"globals": [
"describe",
"it",
"before",
"after",
"beforeEach",
"afterEach"
]
}
}