-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.72 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
{
"name": "web-streams-extensions",
"version": "0.11.0",
"description": "helper methods to create, pipe and map webstreams",
"type": "module",
"types": "./dist/esm/index.d.ts",
"main": "./dist/cjs/index.js",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"./operators": {
"import": "./dist/esm/operators/index.js",
"require": "./dist/cjs/operators/index.js"
}
},
"scripts": {
"clean": "rimraf dist && rimraf coverage && rimraf .nyc_output",
"build:esm": "tsc --module es2020 --outDir ./dist/esm --declaration true --project tsconfig-build.json",
"build:cjs": "tsc --module commonjs --outDir ./dist/cjs --project tsconfig-build.json",
"build": "concurrently \"npm run build:cjs\" \"npm run build:esm\"",
"test": "c8 -r none mocha spec/**/*.ts",
"cover": "codecov",
"prepublishOnly": "npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MeirionHughes/web-streams-extensions.git"
},
"keywords": [
"Streams",
"Webstream",
"reactive",
"extensions"
],
"author": "Meirion Hughes",
"license": "MIT",
"bugs": {
"url": "https://github.com/MeirionHughes/web-streams-extensions/issues"
},
"homepage": "https://github.com/MeirionHughes/web-streams-extensions#readme",
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.1",
"@types/node": "^14.11.2",
"chai": "^4.2.0",
"codecov": "^3.7.2",
"concurrently": "^5.2.0",
"cross-env": "^7.0.2",
"mocha": "^10.2.0",
"c8": "^7.12.0",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^5.0.0",
"web-streams-polyfill": "^3.2.1"
}
}