-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
52 lines (52 loc) · 1.12 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
{
"name": "purest",
"version": "4.0.3",
"description": "REST API Client Library",
"keywords": [
"rest",
"restful",
"api",
"http",
"https",
"client"
],
"license": "Apache-2.0",
"homepage": "https://github.com/simov/purest",
"author": "Simeon Velichkov <[email protected]> (https://simov.github.io)",
"repository": {
"type": "git",
"url": "https://github.com/simov/purest.git"
},
"dependencies": {
"@simov/deep-extend": "^1.0.0",
"qs": "^6.11.0",
"request-compose": "^2.1.6",
"request-multipart": "^1.0.0",
"request-oauth": "^1.0.1"
},
"devDependencies": {
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"request-logs": "^2.1.5"
},
"main": "./purest.js",
"files": [
"config/",
"lib/",
"purest.js",
"purest.d.ts",
"CHANGELOG.md",
"LICENSE",
"README.md",
"package.json"
],
"types": "purest.d.ts",
"scripts": {
"test": "npm run test:ci",
"test:ci": "npx mocha --recursive",
"test:cov": "npx nyc --reporter=lcov --reporter=text-summary mocha -- --recursive"
},
"engines": {
"node": ">=12.0.0"
}
}