This repository has been archived by the owner on Nov 9, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
70 lines (70 loc) · 1.47 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "combohandler",
"description": "Simple Yahoo!-style combo handler.",
"version": "0.4.0",
"keywords": [
"combo",
"combohandler",
"combohandle",
"combine",
"cdn",
"css",
"yui"
],
"homepage": "https://github.com/rgrove/combohandler",
"repository": {
"type": "git",
"url": "git://github.com/rgrove/combohandler.git"
},
"author": {
"name": "Ryan Grove",
"email": "[email protected]",
"url": "http://wonko.com/"
},
"engines": [
"node >=0.10"
],
"jshintConfig": {
"curly": true,
"eqeqeq": true,
"forin": true,
"immed": true,
"newcap": true,
"noarg": true,
"noempty": true,
"undef": true,
"node": true
},
"dependencies": {
"mkdirp": "0.5.0",
"nopt": "3.0.1",
"express": "4.7.3",
"morgan": "1.2.2",
"errorhandler": "1.1.1",
"URIjs": "1.13.2"
},
"devDependencies": {
"istanbul": "0.2.10",
"jshint": "2.5.1",
"mocha": "1.20.1",
"request": "2.36.0",
"rimraf": "2.2.8",
"should": "4.0.4",
"should-http": "0.0.2",
"sinon": "1.10.2"
},
"main": "index.js",
"bin": "./bin/cli.js",
"directories": {
"lib": "./lib"
},
"config": {
"port": "8000",
"server": "./lib/server"
},
"scripts": {
"pretest": "jshint bin lib test/*.js",
"test": "istanbul test --print both ./node_modules/mocha/bin/_mocha",
"posttest": "istanbul check-coverage --statements -9 --functions -2 --branches -9 --lines -7"
}
}