-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.56 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
{
"name": "@foxify/stream",
"version": "1.0.1",
"description": "A high performance Stream alternative for Node.js and browser",
"main": "dist/index.js",
"scripts": {
"prepublishOnly": "npm run lint && npm run build && npm test",
"build": "tsc",
"watch": "npm run build -- --watch",
"lint": "tslint -p tsconfig.json -c tslint.json --exclude '**/*.d.ts'",
"test": "jest",
"coverage": "npm test -- --coverage",
"codecov": "npm run build && npm run coverage -- --runInBand && codecov",
"benchmarks": "find benchmarks -name '*.js' -exec benchmarks/start.sh {} \\;"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/foxifyjs/stream.git"
},
"keywords": [
"readable",
"writable",
"duplex",
"stream",
"read",
"write",
"pipe"
],
"author": "Ardalan Amini <[email protected]> (https://ardalanamini.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/foxifyjs/stream/issues"
},
"homepage": "https://github.com/foxifyjs/stream#readme",
"dependencies": {
"@foxify/events": "^1.1.3"
},
"devDependencies": {
"@types/jest": "^24.0.13",
"@types/node": "^12.0.2",
"benchmark": "^2.1.4",
"codecov": "^3.5.0",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"tslint": "^5.16.0",
"tslint-config-airbnb": "^5.11.1",
"typescript": "^3.4.5"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js",
"node"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testMatch": [
"<rootDir>/tests/**/*\\.ts"
]
}
}