-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 940 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
35
36
{
"name": "curl-string",
"version": "3.1.0",
"description": "Get human-readable cURL strings",
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js && echo \"View Report here: $(pwd)/coverage/lcov-report/index.html\"",
"test:watch": "jest --watchAll --coverage && echo \"View Report here: $(pwd)/coverage/lcov-report/index.html\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/zvakanaka/curl-string.git"
},
"keywords": [
"curl",
"string",
"fetch",
"command"
],
"author": "Adam Quinton",
"type": "module",
"exports": "./index.js",
"license": "MIT",
"bugs": {
"url": "https://github.com/zvakanaka/curl-string/issues"
},
"homepage": "https://github.com/zvakanaka/curl-string#readme",
"devDependencies": {
"jest": "^29.4.1"
},
"dependencies": {
"color-json": "^3.0.2"
},
"engines": {
"node": ">=12"
}
}