-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
86 lines (86 loc) · 2.01 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@fanoutio/grip",
"version": "4.3.0",
"type": "module",
"author": "Fastly <[email protected]>",
"description": "GRIP Interface Library",
"contributors": [
{
"name": "Katsuyuki Omuro",
"email": "[email protected]"
},
{
"name": "Konstantin Bokarius",
"email": "[email protected]"
}
],
"main": "./build/index.js",
"types": "./build/index.d.ts",
"exports": {
".": {
"node": {
"types": "./build/index-node.d.ts",
"default": "./build/index-node.js"
},
"default": {
"types": "./build/index.d.ts",
"default": "./build/index.js"
}
},
"./node": {
"types": "./build/node/index.d.ts",
"default": "./build/node/index.js"
},
"./fastly-fanout": {
"types": "./build/fastly-fanout/index.d.ts",
"default": "./build/fastly-fanout/index.js"
}
},
"files": [
"build/**/*",
"types/**/*"
],
"scripts": {
"prepack": "npm run build",
"build": "npm run test && npm run build-package",
"build-package": "npm run build-package:clean && npm run build-package:compile",
"build-package:clean": "rimraf build",
"build-package:compile": "tsc --build tsconfig.build.json",
"coverage": "c8 npm test",
"test": "npm run test:unit",
"test:unit": "glob -c \"node --loader ts-node/esm --no-warnings=ExperimentalWarning --test\" \"./test/**/*.test.ts\""
},
"repository": {
"type": "git",
"url": "https://github.com/fanout/js-grip.git"
},
"readmeFilename": "README.md",
"keywords": [
"grip",
"fastly",
"fanout",
"fanoutpub",
"realtime",
"push",
"pubcontrol",
"publish"
],
"license": "MIT",
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/node": "^20",
"c8": "^8.0.1",
"glob": "^10.3.10",
"rimraf": "^3.0.2",
"ts-node": "^10.9.2",
"typescript": "^5.2.2"
},
"dependencies": {
"debug": "^4.3.4",
"jose": "^5.2.2",
"jspack": "0.0.4"
},
"engines": {
"node": ">= 16"
}
}