-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
51 lines (51 loc) · 1.1 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
{
"name": "@bufferapp/micro-rpc-client",
"version": "1.5.0",
"description": "Universal JS client for micro-rpc",
"main": "index.js",
"scripts": {
"start": "node .",
"lint": "eslint . --ignore-pattern coverage node_modules",
"test": "npm run lint && jest --coverage",
"test-watch": "jest --watch",
"test-update": "jest -u"
},
"jest": {
"verbose": true,
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/bufferapp/micro-rpc-client.git"
},
"keywords": [
"rpc",
"client"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/bufferapp/micro-rpc-client/issues"
},
"homepage": "https://github.com/bufferapp/micro-rpc-client#readme",
"devDependencies": {
"eslint": "^5.5.0",
"jest": "^29.7.0"
},
"dependencies": {
"isomorphic-fetch": "^3.0.0"
},
"files": [
"index.js"
],
"overrides": {
"node-fetch": "2.7.0"
}
}