-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 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
47
{
"name": "veloci-router",
"version": "0.1.1",
"description": "Simple routing framework for HTTP servers in NODE",
"main": "lib/v-router.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "gulp",
"lint": "gulp run-lint",
"dev": "mocha test -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DonChatelain/veloci-router.git"
},
"author": "Don Chatelain",
"contributors": [
{
"name": "Allison Davis"
},
{
"name": "Dave Hanagan"
}
],
"keywords": [
"router",
"routing"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/DonChatelain/veloci-router/issues"
},
"homepage": "https://github.com/DonChatelain/veloci-router#readme",
"devDependencies": {
"chai": "^3.5.0",
"chai-http": "^2.0.1",
"gulp": "^3.9.1",
"gulp-eslint": "^2.0.0",
"gulp-spawn-mocha": "^2.2.2",
"mocha": "^2.4.5",
"nodemon": "^1.9.2",
"sander": "^0.5.1",
"superagent": "^2.0.0-alpha.3"
}
}