-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 862 Bytes
/
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
{
"name": "https-node.js",
"description": "A simple HTTP request library for JavaScript.",
"url": "https://github.com/pb2204/JS-HTTP",
"keywords": [
"http request",
"ajax request",
"http server",
"ajax server",
"get method",
"post method"
],
"author": "Pabitra Banerjee",
"contributors": [],
"license": "MIT",
"lib": ".",
"main": "dist/js-http.min.js",
"version": "1.1.9",
"scripts": {
"test": "mocha tests/test-js-http.js",
"build": "webpack --mode production"
},
"repository": {
"type": "git",
"url": "https://github.com/pb2204/JS-HTTP"
},
"devDependencies": {
"chai": "^4.3.9",
"chai-http": "^4.4.0",
"mocha": "^10.2.0",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
}
}