-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.34 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
{
"name": "@mattiasbuelens/web-streams-adapter",
"version": "0.1.0",
"description": "Adapters for converting between different implementations of WHATWG Streams",
"main": "dist/web-streams-adapter",
"module": "dist/web-streams-adapter.mjs",
"types": "dist/web-streams-adapter.d.ts",
"files": [
"dist/"
],
"engines": {
"node": ">= 12"
},
"scripts": {
"build": "rollup -c",
"test": "cd test && node -r ts-node/register --expose_gc run-web-platform-tests.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MattiasBuelens/web-streams-adapter.git"
},
"author": "Mattias Buelens <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/MattiasBuelens/web-streams-adapter/issues"
},
"homepage": "https://github.com/MattiasBuelens/web-streams-adapter#readme",
"devDependencies": {
"@rollup/plugin-typescript": "^8.2.1",
"@types/micromatch": "^4.0.1",
"@types/node": "^14.14.44",
"@types/resolve": "^1.20.0",
"@ungap/promise-all-settled": "^1.1.2",
"micromatch": "^4.0.4",
"resolve": "^1.20.0",
"rollup": "^3.29.5",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-dts": "^3.0.1",
"ts-node": "^9.1.1",
"tslib": "^2.2.0",
"typescript": "^4.2.4",
"web-streams-polyfill": "^3.0.3",
"wpt-runner": "^3.2.1"
}
}