-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.36 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
{
"name": "@adt/rpc-client",
"version": "0.0.1-SNAPSHOT.3",
"description": "RPC client with pluggable transport and protocol layers",
"main": "dist/RpcClient.cjs.js",
"module": "dist/RpcClient.esm.js",
"browser": "dist/RpcClient.umd.js",
"dependencies": {
"@adt/event-emitter": ">0.0.1-SNAPSHOT.0 <0.0.1",
"@adt/message-tracker": ">0.0.1-SNAPSHOT.0 <0.0.1",
"@babel/polyfill": "^7.2.5"
},
"scripts": {
"test": "jasmine",
"build": "rollup -c",
"eslint": "eslint src/*",
"prebuild": "npm run eslint",
"pretest": "npm run build"
},
"keywords": [
"rpc",
"remote",
"procedure",
"call",
"request-response"
],
"license": "MIT",
"devDependencies": {
"@adt/json-rpc-transport-providers": ">0.0.1-SNAPSHOT.0 <0.0.1",
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/plugin-external-helpers": "^7.2.0",
"@babel/preset-env": "^7.3.4",
"babel-preset-es2015-rollup": "^3.0.0",
"eslint": "^5.14.1",
"jasmine": "^3.3.1",
"rollup": "^1.3.1",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.2.1",
"rollup-plugin-node-resolve": "^4.0.1"
},
"publishConfig": {
"access": "public"
},
"files": [
"CHANGELOG.md",
"README.md",
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/AwesomeDevTeam/RpcClient.git"
}
}