-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
95 lines (95 loc) · 2.73 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@teclone/r-server",
"version": "0.0.0-development",
"description": "A lightweight, extensible web-server with inbuilt routing-engine, static file server, file upload handler, request body parser, middleware support and lots more",
"publishConfig": {
"access": "public"
},
"main": "build/cjs/index",
"typings": "build/cjs/index",
"bin": {
"start": "./bin/start.js",
"serve": "./bin/serve.js"
},
"files": [
"bin",
"build"
],
"scripts": {
"prepare": "husky install",
"pretest": "bash ./scripts/gen-ssl-cert.sh",
"test": "cross-env BABEL_ENV=test jest --runInBand",
"build": "yarn rollup-all",
"lint": "eslint src/**/*.ts --fix",
"format": "prettier --write .",
"compile": "tsc --noEmit",
"start": "yarn build && node ./bin/start",
"serve": "yarn build && node ./bin/serve",
"report-coverage": "jest --coverage --coverageReporters=text-lcov | coveralls",
"release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/teclone/r-server.git"
},
"keywords": [
"web-server",
"router",
"routing-engine",
"static-file-server",
"file-upload-handler",
"range-request-server",
"mountable-routers",
"api",
"body-parser"
],
"author": "Harrison Ifeanyichukwu <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/teclone/r-server/issues"
},
"homepage": "https://github.com/teclone/r-server#readme",
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@semantic-release/github": "^8.0.7",
"@teclone/rollup-all": "^1.29.1",
"@types/jest": "24.0.11",
"@types/request-promise": "^4.1.47",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"babel-jest": "^29.5.0",
"coveralls": "3.0.3",
"cross-env": "^7.0.3",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"js-beautify": "1.7.5",
"prettier": "^2.8.8",
"request": "2.88.0",
"request-promise": "^4.2.6",
"request-promise-native": "^1.0.9",
"semantic-release": "^17.4.2",
"semantic-release-cli": "5.2.0",
"source-map-support": "0.5.12",
"typescript": "^4.2.3",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "3.3.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@babel/runtime": "^7.13.10",
"@teclone/node-utils": "^1.1.1",
"@teclone/regex": "1.0.3",
"@teclone/utils": "^2.24.0",
"@types/node": "^14.14.33",
"dotenv": "^8.2.0",
"mime-types": "2.1.28",
"uuid": "^8.3.2"
}
}