-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
54 lines (54 loc) · 1.33 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
{
"name": "isomorphic-streams",
"version": "1.0.3",
"description": "Isomorphic WHATWG Streams API package for browser and Node.js",
"main": "./index.node.js",
"browser": "./index.browser.js",
"types": "./index.d.ts",
"exports": {
"types": "./index.d.ts",
"node": "./index.node.js",
"default": "./index.browser.js"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ksm2/isomorphic-streams.git"
},
"author": {
"name": "Konstantin Möllers",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/ksm2/isomorphic-streams/issues"
},
"homepage": "https://github.com/ksm2/isomorphic-streams",
"keywords": [
"streams",
"web-streams",
"whatwg"
],
"type": "module",
"engines": {
"node": ">= 16.5.0"
},
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --no-cache",
"prettier": "prettier --check *.js *.ts README.md CODE_OF_CONDUCT.md",
"prettier:fix": "prettier --write *.js *.ts README.md CODE_OF_CONDUCT.md"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"jest": "^27.3.1",
"prettier": "^2.5.0",
"ts-jest": "^27.0.7",
"typescript": "^4.5.2"
},
"files": [
"index.d.ts",
"index.browser.js",
"index.node.js",
"LICENSE",
"README.md"
]
}