forked from adaltas/node-http-status
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1002 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 1002 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
{
"name": "http-status",
"version": "1.0.1",
"description": "Interact with HTTP status code",
"homepage": "https://github.com/adaltas/node-http-status",
"author": "David Worms <david@adaltas.com>",
"keywords": ["http", "express", "connect"],
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/adaltas/node-http-status"
},
"bugs": {
"email": "open@adaltas.com",
"url": "http://github.com/adaltas/node-http-status/issues"
},
"devDependencies": {
"coffee-script": "latest",
"mocha": "latest",
"should": "latest"
},
"contributors": [
{ "name": "David Worms", "email": "david@adaltas.com" },
{ "name": "Daniel Gasienica", "email": "daniel@gasienica.ch"}
],
"main": "lib/index.js",
"engines": { "node": ">= 0.4.0" },
"scripts": {
"coffee": "node_modules/.bin/coffee -b -o lib src",
"test": "NODE_ENV=test node_modules/.bin/mocha --compilers coffee:coffee-script/register --reporter dot"
}
}