-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.28 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
{
"name": "http-class",
"version": "0.9.5",
"description": "http class for response codes",
"main": "dist/index.js",
"private": false,
"--prettier": "@giovannicardamone/prettier-config",
"--eslintConfig": {
"extends": "@giovannicardamone/eslint-config"
},
"scripts": {
"test": "exit 0",
"lint": "eslint",
"build": "tsc",
"build:watch": "tsc --watch",
"docs": "docsify generate docs",
"docs:watch": "docsify serve docs",
"prepublishOnly": "npm run lint && npm run build",
"generate": "node generate.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GiovanniCardamone/http-class.git"
},
"keywords": [
"http",
"javascript",
"typescript",
"http-status-code"
],
"author": "Giovanni Cardamone <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/GiovanniCardamone/http-class/issues"
},
"homepage": "https://github.com/GiovanniCardamone/http-class#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"docsify": "^4.12.1",
"eslint": "^7.32.0",
"husky": "^7.0.1",
"typescript": "^4.3.5"
},
"dependencies": {
"class-schema": "^0.22.10",
"reflect-metadata": "^0.1.13"
}
}