-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.42 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
{
"name": "@adt/json-rpc-client",
"version": "0.0.1-SNAPSHOT.9",
"license": "MIT",
"description": "Json-rpc client with pluggable transport layers",
"main": "dist/JsonRpcClient.cjs.js",
"module": "dist/JsonRpcClient.esm.js",
"browser": "dist/JsonRpcClient.umd.js",
"dependencies": {
"@adt/json-rpc": "0.0.1-SNAPSHOT.27",
"@adt/message-tracker": ">0.0.1-SNAPSHOT.0 <0.0.1",
"@adt/event-emitter": ">0.0.1-SNAPSHOT.0 <0.0.1"
},
"devDependencies": {
"@adt/json-rpc-transport-providers": ">0.0.1-SNAPSHOT.0 <0.0.1",
"@babel/core": "7.12.3",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1",
"@babel/plugin-proposal-optional-chaining": "^7.12.7",
"@babel/preset-env": "7.12.11",
"@rollup/plugin-babel": "5.2.1",
"@rollup/plugin-commonjs": "16.0.0",
"@rollup/plugin-node-resolve": "11.0.1",
"eslint": "^7.15.0",
"jasmine": "2.8.0",
"rollup": "2.35.1"
},
"scripts": {
"test": "jasmine",
"build": "rollup -c",
"eslint": "eslint src/*",
"prebuild": "npm run eslint",
"pretest": "npm run build"
},
"publishConfig": {
"access": "public"
},
"files": [
"CHANGELOG.md",
"README.md",
"dist"
],
"keywords": [
"json",
"json-rpc",
"rpc",
"remote",
"procedure",
"call",
"request-response"
],
"repository": {
"type": "git",
"url": "https://github.com/AwesomeDevTeam/JsonRpcClient.git"
}
}