-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1015 Bytes
/
package.json
File metadata and controls
49 lines (49 loc) · 1015 Bytes
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
{
"name": "quark",
"version": "1.0.1",
"description": "A simple micro-service framework for node.js",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/robert52/quark"
},
"author": "Robert Onodi <robert.onodi89@gmail.com>",
"license": "MIT",
"dependencies": {
"connect": "^3.4.0",
"lodash": "^3.9.3",
"patrun": "^0.4.3"
},
"devDependencies": {
"mocha": "^2.2.5",
"request": "^2.60.0",
"should": "^7.0.2"
},
"engines": {
"node": ">= 0.10.0"
},
"files": [
"LICENSE",
"README.md",
"index.js",
"lib/"
],
"bugs": {
"url": "https://github.com/robert52/quark/issues"
},
"homepage": "https://github.com/robert52/quark",
"directories": {
"example": "examples",
"test": "tests"
},
"scripts": {
"test": "mocha tests/ --ui bdd --recursive --reporter spec --timeout 3000 --slow 900"
},
"keywords": [
"microservices",
"micro",
"service",
"framework",
"small"
]
}