-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.22 KB
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
55
56
57
58
{
"name": "multidatastore",
"version": "0.1.4",
"description": "Store objects into multiple stores.",
"main": "index.js",
"files": [
"drivers/"
],
"scripts": {
"test": "tape test/**/*.js | tap-spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hellofloat/multidatstore.git"
},
"keywords": [],
"author": "Andy Burke <aburke@bitflood.org>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hellofloat/multidatstore/issues"
},
"homepage": "https://github.com/hellofloat/multidatstore#readme",
"dependencies": {
"async": "^2.4.0",
"extend": "^3.0.1"
},
"engines": {
"node": ">=6.0.0"
},
"jshintConfig": {
"curly": true,
"eqeqeq": true,
"eqnull": true,
"esversion": 6,
"forin": true,
"freeze": true,
"futurehostile": true,
"latedef": "nofunc",
"maxcomplexity": 15,
"maxdepth": 3,
"maxparams": 4,
"maxstatements": 30,
"noarg": true,
"nocomma": true,
"node": true,
"nonbsp": true,
"nonew": true,
"strict": "global",
"undef": true,
"unused": true
},
"devDependencies": {
"alasql": "^0.4.0",
"sqlstring": "^2.2.0",
"tap-spec": "^4.1.1",
"tape": "^4.6.3"
}
}