-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.17 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
{
"name": "websub",
"version": "0.5.0",
"description": "Complete implementation of WebSub standard in TypeScript/JavaScript.",
"main": "lib/websub.js",
"types": "lib/websub.d.ts",
"files": [
"lib/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/TheDocTrier/websub-js.git"
},
"author": "Michael Bradley <[email protected]>",
"license": "AGPL-3.0-only",
"scripts": {
"build": "tsc",
"format": "prettier --write \"**/*.ts\" \"**/*.json\"",
"test": "jest --config=lib/jest.config.js",
"prepare": "yarn build",
"prepublishOnly": "yarn test",
"version": "yarn format",
"docs": "typedoc --out docs src/websub.ts"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^17.0.31",
"@types/parse-link-header": "^1.0.1",
"@types/pouchdb": "^6.4.0",
"jest": "^27.5.1",
"prettier": "^2.5.1",
"typedoc": "^0.22.15",
"typescript": "^4.6.4"
},
"dependencies": {
"cheerio": "^1.0.0-rc.10",
"content-type-parser": "^1.0.2",
"eventemitter3": "^4.0.7",
"fastify": "^3.29.0",
"node-fetch": "^3.2.4",
"parse-link-header": "^2.0.0",
"pouchdb": "^7.2.2"
}
}