-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 949 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 949 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
{
"name": "http-status-cli",
"version": "1.2.2",
"description": "HTTP Status code message CLI lookup",
"main": "src/index.js",
"scripts": {
"posttest": "npm run lint",
"prepublish": "npm prune && npm test",
"lint": "node node_modules/.bin/eslint .",
"test": "node node_modules/.bin/mocha test/"
},
"bin": {
"http-status": "./bin/http-status-cli"
},
"engines" : {
"node" : ">=4.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/bjarneo/http-status-cli.git"
},
"homepage": "https://github.com/bjarneo/http-status-cli",
"bugs": {
"url": "https://github.com/bjarneo/http-status-cli/issues"
},
"keywords": [
"http",
"status",
"message",
"cli"
],
"author": "Bjarne Oeverli",
"license": "MIT",
"devDependencies": {
"mocha": "^2.3.4",
"eslint-config-vgno": "7.0.0",
"eslint": "^1.8.0"
},
"dependencies": {
"colors": "^1.1.2"
}
}