-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 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
59
60
61
62
63
64
65
66
67
{
"name": "stream-transformers",
"version": "1.0.0",
"description": "Reusable stream transformers for WHATWG Streams similar to ReactiveX Operators",
"main": "./lib/index.js",
"type": "module",
"scripts": {
"clean": "rimraf lib",
"build": "tsc --project tsconfig.build.json",
"prepack": "npm run clean && npm run build",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --no-cache",
"prettier": "prettier --check src/*.ts README.md CODE_OF_CONDUCT.md",
"prettier:fix": "prettier --write src/*.ts README.md CODE_OF_CONDUCT.md",
"readme": "node --loader ts-node/esm scripts/readme.ts --check",
"readme:fix": "node --loader ts-node/esm scripts/readme.ts --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ksm2/stream-transformers.git"
},
"keywords": [
"streams",
"web-streams",
"whatwg",
"jest",
"marbles"
],
"author": {
"name": "Konstantin Möllers",
"email": "ksm.moellers@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ksm2/stream-transformers/issues"
},
"homepage": "https://github.com/ksm2/stream-transformers#readme",
"dependencies": {
"isomorphic-streams": "^1.0.2"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/node": "^16.11.10",
"jest": "^27.3.1",
"jest-stream-marbles": "^1.1.0",
"prettier": "^2.5.0",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.7",
"typescript": "^4.5.2"
},
"prettier": {
"printWidth": 120,
"trailingComma": "all",
"overrides": [
{
"files": ["*.md"],
"options": {
"printWidth": 80
}
}
]
},
"files": [
"lib",
"LICENSE",
"README.md"
]
}