-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.16 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
{
"name": "beggar",
"version": "0.13.1",
"description": "",
"main": "index.js",
"typings": "index.d.ts",
"dependencies": {
"form-data": "^4.0.0",
"qs": "^6.10.1"
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/mocha": "^8.2.2",
"@types/multer": "^1.4.5",
"@types/node": "^15.12.2",
"@types/qs": "^6.9.6",
"body-parser": "^1.19.0",
"mocha": "^9.0.0",
"multer": "^1.4.2",
"nyc": "^15.1.0",
"prettier": "^2.3.1",
"typescript": "^4.3.3"
},
"scripts": {
"pub": "npm i && npm t && npm publish",
"test": "mocha 'test/**/*.test.js' --exit",
"coverage": "nyc mocha 'test/**/*test.js' --exit",
"prettier": "prettier --write '**/*.{js,ts,json}'"
},
"keywords": [
"http",
"request",
"client"
],
"homepage": "https://github.com/davidmdm/beggar#readme",
"repository": {
"type": "git",
"url": "https://github.com/davidmdm/beggar.git"
},
"author": "",
"license": "ISC",
"nyc": {
"include": [
"src/**/*.js"
],
"extension": [
".js"
],
"reporter": [
"html",
"text"
],
"sourceMap": true,
"instrument": true
}
}