-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
48 lines (48 loc) · 1014 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
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "para-client-js",
"version": "1.39.3",
"description": "JavaScript Client for Para",
"homepage": "https://paraio.org",
"repository": "erudika/para-client-js",
"exports": "./lib/index.js",
"types": "./lib/index.d.ts",
"type": "module",
"author": {
"name": "Alex Bogdanovski",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/Erudika/para-client-js/issues"
},
"files": [
"lib"
],
"keywords": [
"para",
"client",
"back-end",
"server-side",
"server",
"backend",
"api",
"rest",
"json"
],
"devDependencies": {
"browserify": "^17.0.1",
"minimist": "^1.2.8",
"mocha": "^10.7.3"
},
"scripts": {
"test": "mocha",
"build": "./node_modules/.bin/browserify -o bundle.js -r ./lib/index.js:para-client-js"
},
"license": "Apache-2.0",
"dependencies": {
"aws4": "^1.13.2",
"lodash": "^4.17.21",
"lru-cache": "^11.0.1",
"rsvp": "^4.8.5",
"superagent": "^10.1.1"
}
}