-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
70 lines (70 loc) · 2.1 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
{
"name": "@openpgp/web-stream-tools",
"version": "0.1.3",
"description": "Utility functions for WhatWG Streams",
"type": "module",
"files": [
"lib/",
"tsconfig.json"
],
"exports": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js"
},
"types": "./lib/index.d.ts",
"main": "./lib/index.js",
"engines": {
"node": ">= 18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/openpgpjs/web-stream-tools.git"
},
"author": "Daniel Huigens <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/openpgpjs/web-stream-tools/issues"
},
"homepage": "https://github.com/openpgpjs/web-stream-tools#readme",
"devDependencies": {
"@openpgp/jsdoc": "^3.6.11",
"@types/chai": "^4.3.11",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.4",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"chai": "^4.3.7",
"eslint": "^8.40.0",
"eslint-plugin-import": "^2.27.5",
"karma-chrome-launcher": "^3.2.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-webpack": "^5.0.0",
"mocha": "^10.2.0",
"playwright": "^1.33.0",
"ts-loader": "^9.5.1",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.2",
"tsx": "^4.7.0",
"typescript": "^5.5.2",
"web-streams-polyfill": "^4.0.0"
},
"peerDependencies": {
"typescript": ">=4.2"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"scripts": {
"test-type-definitions": "tsx test/typescript.test.ts && tsx --tsconfig test/tsconfig.es5.json test/typescript.test.ts",
"test-browser": "karma start karma.conf.cjs",
"test-node": "ts-mocha -n loader=ts-node/esm ./test/node.test.ts ./test/common.test.ts",
"lint": "eslint lib test",
"docs": "jsdoc --configure .jsdocrc.cjs --destination docs --readme README.md lib && printf '%s' 'web-stream-tools.openpgpjs.org' > docs/CNAME",
"preversion": "rm -rf docs",
"version": "npm run docs && git add -A docs",
"postversion": "git push && git push --tags && npm publish"
}
}