-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.32 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
62
63
64
65
{
"name": "@bufferapp/buffer-rpc",
"version": "1.3.0",
"description": "Buffer RPC request handler",
"main": "src/index.js",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bufferapp/buffer-rpc.git"
},
"keywords": [
"RPC"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/bufferapp/buffer-rpc/issues"
},
"homepage": "https://github.com/bufferapp/buffer-rpc#readme",
"eslintConfig": {
"parser": "babel-eslint",
"env": {
"node": true,
"es6": true
},
"plugins": [
"prettier"
],
"rules": {
"prettier/prettier": [
2,
{
"singleQuote": true,
"trailingComma": "all",
"semi": false,
"bracketSpacing": true
}
],
"no-unused-vars": 2
}
},
"devDependencies": {
"@bufferapp/micro-rpc-client": "1.0.0",
"babel-eslint": "^9.0.0",
"body-parser": "^1.18.3",
"eslint": "^5.5.0",
"eslint-plugin-prettier": "^2.6.2",
"express": "^4.21.0",
"jest": "^29.7.0",
"prettier": "^1.14.2",
"request-promise": "^4.2.6",
"test-listen": "^1.1.0"
},
"files": [
"src/"
],
"publishConfig": {
"access": "public"
},
"overrides": {
"node-fetch": "2.7.0"
}
}