forked from kolypto/nodejs-kickapp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (33 loc) · 694 Bytes
/
package.json
File metadata and controls
37 lines (33 loc) · 694 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
{
"name": "kickapp",
"description": "Application architecture framework with pluggable services",
"version": "1.0.3",
"author": "kolypto <kolypto@gmail.com>",
"license": "MIT",
"maintainers": [
"kolypto <kolypto@gmail.com>"
],
"repository": {
"type": "git",
"url": "git@github.com:kolypto/nodejs-kickapp.git"
},
"main": "./lib/index",
"keywords": [
"application",
"services",
"architecture"
],
"dependencies": {
"q": "0.9.x",
"lodash": "2.4.x"
},
"devDependencies": {
"nodeunit": "0.8.2"
},
"engines": {
"node": ">= 0.9.0"
},
"scripts": {
"test": "./node_modules/.bin/nodeunit tests/*-test.js"
}
}