-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.04 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
{
"name": "statushttp",
"version": "1.0.4",
"description": "A library for working with HTTP status codes.",
"main": "statushttp.js",
"scripts": {
"start": "node statushttp-cli.js",
"build": "concurrently npm:build-esm-wrapper npm:build-minify",
"build-esm-wrapper": "node build-wrapper.js",
"build-minify": "minify statushttp.js > statushttp.min.js",
"test": "cd tests && node test",
"postinstall": "npm run build",
"prepack": "npm run build"
},
"exports": {
"require": "./statushttp.js",
"import": "./esm/wrapper.js"
},
"bin": {
"statushttp": "statushttp-cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/paramsiddharth/statushttp.git"
},
"keywords": [
"http-status",
"status-codes",
"status",
"http"
],
"author": "Param Siddharth <contact@paramsid.com> (http://www.paramsid.com)",
"license": "BSD-3-Clause",
"devDependencies": {
"concurrently": "^5.3.0",
"minify": "^6.0.1",
"shelljs": "^0.8.4"
},
"dependencies": {
"chalk": "^4.1.0",
"cli-table": "^0.3.4",
"yargs": "^16.2.0"
}
}