-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 1.02 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
{
"name": "mau",
"version": "0.3.3",
"description": "Query Engine",
"repository": {
"type": "git",
"url": "git://github.com/forfuturellc/mau.git"
},
"author": {
"name": "GochoMugo",
"email": "mugo@forfuture.co.ke",
"url": "http://www.gmugo.in"
},
"main": "lib/index.js",
"engines": {
"node": ">=7"
},
"scripts": {
"doc": "jsdoc2md --files lib/*.js store/*.js --template doc/api.hbs > doc/api.md",
"test": "grunt test",
"test-coverage": "istanbul cover _mocha --report lcovonly -- --exit -R spec test/unit/**/*.js"
},
"dependencies": {
"async": "^2.3.0",
"debug": "^3.1.0",
"lodash": "^4.17.4",
"memory-cache": "^0.2.0",
"redis": "^2.8.0",
"uuid": "^3.1.0"
},
"devDependencies": {
"grunt": "^1.0.1",
"grunt-cli": "^1.2.0",
"grunt-eslint": "^20.1.0",
"grunt-mocha-test": "^0.13.3",
"istanbul": "^0.4.5",
"jsdoc-to-markdown": "^3.0.0",
"load-grunt-tasks": "^3.5.2",
"mocha": "^4.0.1",
"mocha-lcov-reporter": "^1.3.0"
}
}