-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
63 lines (63 loc) · 1.45 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
{
"name": "@web-std/stream",
"version": "1.0.3",
"description": "Web API compatible streams for node/web",
"files": [
"src",
"dist/src",
"License.md",
"Readme.md"
],
"keywords": [
"web-stream",
"whatwg-stream",
"stream",
"typescript"
],
"type": "module",
"module": "./src/lib.js",
"main": "./src/stream.cjs",
"types": "./src/lib.d.ts",
"browser": {
"./src/lib.node.js": "./src/lib.js"
},
"exports": {
".": {
"types": "./src/lib.d.ts",
"browser": "./src/lib.js",
"require": "./src/stream.cjs",
"import": "./src/lib.node.js"
}
},
"author": "Irakli Gozalishvili <[email protected]> (https://gozala.io)",
"repository": "https://github.com/web-std/io",
"license": "MIT",
"dependencies": {
"web-streams-polyfill": "^3.1.1"
},
"devDependencies": {
"@types/node": "15.0.2",
"git-validate": "2.2.4",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"playwright-test": "^7.2.0",
"prettier": "^2.3.0",
"rimraf": "3.0.2",
"typescript": "^4.4.4",
"uvu": "0.5.2"
},
"scripts": {
"typecheck": "tsc --build",
"test:es": "uvu test all.spec.js",
"test:web": "playwright-test -r uvu test/web.spec.js",
"test:cjs": "node test/node.spec.cjs",
"test": "npm run test:es && npm run test:web && npm run test:cjs",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"prettier --no-semi --write",
"git add"
]
}
}