-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
86 lines (86 loc) · 2.54 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "readable-web-to-node-stream",
"version": "3.0.2",
"description": "Converts a Web-API readable-stream into a Node readable-stream.",
"main": "lib/index.js",
"files": [
"lib/**/*.js",
"lib/**/*.d.ts"
],
"engines": {
"node": ">=8"
},
"types": "lib/index.d.ts",
"scripts": {
"clean": "del-cli lib/**/*.js lib/**/*.js.map lib/**/*.d.ts coverage",
"compile-lib": "tsc -p lib/tsconfig.json",
"compile-test": "tsc -p lib/tsconfig.spec.json",
"prepublishOnly": "yarn run build",
"build": "npm run compile-lib && npm run compile-test",
"tslint": "tslint 'lib/**/*.ts' --exclude 'lib/**/*.d.ts'",
"eslint": "eslint karma.conf.js",
"lint": "npm run tslint && npm run eslint",
"test": "karma start --single-run",
"karma-headless": "karma start --single-run --reporters coverage-istanbul,spec,progress",
"karma": "karma start",
"karma-firefox": "karma start --browsers Firefox",
"karma-once": "karma start --browsers Chrome --single-run",
"post-coveralls": "coveralls < coverage/lcov.info",
"post-codacy": " codacy-coverage < coverage/lcov.info"
},
"keywords": [
"stream.readable",
"web",
"node",
"browser",
"stream",
"covert",
"coverter",
"readable",
"readablestream"
],
"repository": "https://github.com/Borewit/readable-web-to-node-stream.git",
"author": {
"name": "Borewit",
"url": "https://github.com/Borewit"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/Borewit"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Borewit/readable-web-to-node-stream/issues"
},
"dependencies": {
"process": "^0.11.10",
"readable-stream": "^3.6.0"
},
"devDependencies": {
"@types/jasmine": "^3.8.2",
"@types/node": "^18.11.9",
"@types/readable-stream": "^2.3.11",
"coveralls": "^3.1.1",
"del-cli": "^4.0.1",
"eslint": "^8.27.0",
"istanbul-instrumenter-loader": "^3.0.1",
"jasmine-core": "^4.5.0",
"karma": "^6.4.1",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-edge-launcher": "^0.4.2",
"karma-firefox-launcher": "^2.1.0",
"karma-jasmine": "^4.0.1",
"karma-jasmine-html-reporter": "^1.7.0",
"karma-safari-launcher": "^1.0.0",
"karma-spec-reporter": "^0.0.32",
"karma-webpack": "^5.0.0",
"music-metadata-browser": "^2.5.9",
"ts-loader": "^9.4.1",
"tslint": "^6.1.3",
"typescript": "^4.3.5",
"url": "^0.11.0",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0"
}
}