-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
65 lines (65 loc) · 1.38 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": "@borderless/json-rpc",
"version": "3.0.1",
"description": "Tiny, type-safe JSON-RPC 2.0 implementation",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist.es2015/index.js",
"sideEffects": false,
"jsnext:main": "dist.es2015/index.js",
"files": [
"dist/",
"dist.es2015/"
],
"scripts": {
"lint": "ts-scripts lint",
"format": "ts-scripts format",
"specs": "ts-scripts specs",
"test": "ts-scripts test",
"prepare": "ts-scripts install && ts-scripts build"
},
"ts-scripts": {
"project": [
"tsconfig.json",
"tsconfig.es2015.json"
],
"dist": [
"dist",
"dist.es2015"
]
},
"repository": {
"type": "git",
"url": "git://github.com/borderless/json-rpc.git"
},
"keywords": [
"json",
"rpc",
"type",
"safe",
"typescript"
],
"author": {
"name": "Blake Embrey",
"email": "hello@blakeembrey.com",
"url": "http://blakeembrey.me"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/borderless/json-rpc/issues"
},
"homepage": "https://github.com/borderless/json-rpc",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=10"
},
"devDependencies": {
"@borderless/ts-scripts": "^0.0.8",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.27",
"ts-expect": "^1.3.0",
"typescript": "^4.1.5"
}
}