forked from MattiasBuelens/web-streams-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.22 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
{
"name": "@mattiasbuelens/web-streams-adapter",
"version": "0.1.0-alpha.4",
"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/"
],
"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": "^4.1.1",
"@types/micromatch": "^4.0.1",
"@types/node": "^10.17.21",
"@types/resolve": "^1.14.0",
"micromatch": "^4.0.2",
"resolve": "^1.17.0",
"rollup": "^2.7.2",
"rollup-plugin-dts": "^1.4.0",
"ts-node": "^8.9.0",
"tslib": "^1.11.1",
"typescript": "^3.8.3",
"web-streams-polyfill": "^2.1.1",
"wpt-runner": "^2.8.0"
}
}