-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.27 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
{
"name": "dame",
"version": "1.2.7",
"description": "minimalistic HTTP client for browser and node",
"repository": {
"type": "git",
"url": "https://github.com/Icaruk/dame"
},
"bugs": {
"url": "https://github.com/Icaruk/dame/issues"
},
"homepage": "https://github.com/Icaruk/dame",
"scripts": {
"test": "jest",
"test_coveralls": "jest && coveralls < coverage/lcov.info",
"server": "node ./playground/server.js",
"benchmark": "node ./benchmarks/benchmark.js",
"declaration:build": "tsc -b",
"rollup": "rollup -c",
"publishDryRun": "npm publish --dry-run"
},
"keywords": [
"https",
"http",
"request",
"fetch",
"ajax",
"javascript",
"node"
],
"contributors": [
"Icaruk <adrian@icaruk.dev>",
"Artur <artur.develop@gmail.com>"
],
"license": "ISC",
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^13.3.0",
"axios": "^0.27.2",
"body-parse": "^0.1.0",
"coveralls": "^3.1.1",
"express": "^4.18.1",
"jest": "^28.1.3",
"nanobench": "^2.1.1",
"node-fetch": "^2.6.1",
"phin": "^3.6.1",
"rollup": "^2.77.3",
"rollup-plugin-polyfill-node": "^0.10.2",
"typescript": "^4.7.4",
"vitest": "^2.1.3"
},
"main": "dame.js",
"files": [
"dame.js",
"dame.d.ts"
],
"types": "dame.d.ts"
}