-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 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
59
60
61
{
"name": "rests",
"version": "1.1.1",
"description": "Easily generate API client's SDK — organize and simplify API Requests.",
"main": "./lib/index.js",
"bin": {
"rests": "./lib/cli/cli.js"
},
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"prepublishOnly": "npm run build",
"push": "git add . && git commit -am \"publish v%npm_package_version%\" && git push",
"tests": "mocha",
"build": "tsc && node after_build.js && npm run tests",
"cli": "node ./lib/cli/cli.js",
"exit": "exit && echo test"
},
"keywords": [
"sdk",
"api",
"client",
"generate",
"openapi",
"swagger",
"wrape",
"rest",
"schema",
"http",
"post",
"get",
"categories",
"rested-js",
"wrapper",
"fetch",
"request"
],
"repository": {
"type": "git",
"url": "https://github.com/el1s7/rests"
},
"author": "Elis",
"license": "ISC",
"devDependencies": {
"@types/node": "^17.0.43",
"form-data": "^4.0.0",
"mocha": "^10.0.0",
"node-fetch": "^2.6.7",
"terser": "^5.14.1"
},
"dependencies": {
"@types/node": "^17.0.43",
"form-data": "^3.0.0",
"getarg": "0.0.5",
"glob": "^8.0.3",
"node-fetch": "^2.6.1",
"typescript": "^4.8.2",
"yaml": "^2.3.1"
}
}