-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
56 lines (56 loc) · 1.78 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
{
"name": "ts-stream",
"version": "2.0.2",
"description": "Type-safe object streams with seamless support for backpressure, ending, and error handling",
"main": "./dist/lib/index.js",
"scripts": {
"test": "npm run -s lint && npm run -s build && npm run -s mocha",
"onlytest": "npm run -s build && npm run -s mocha",
"mocha": "mocha",
"cover": "npm run -s build && nyc npm -s run mocha",
"lint": "tslint --format verbose -p src/lib && tslint --format verbose -p src/test/ && tslint --format verbose -p src/examples/ && prettier --check 'src/{lib,test,examples}/*.ts' '*.json' '*.yml' '.vscode/*.json'",
"format": "prettier --write 'src/{lib,test,examples}/*.ts' '*.json' '*.yml' '.vscode/*.json'",
"prepare": "npm run -s test",
"prepublishOnly": "npm run -s prepare",
"build": "tsc -p src/lib/ && tsc -p src/test/ && tsc -p src/examples",
"preversion": "npm install",
"version": "git add package-lock.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/poelstra/ts-stream.git"
},
"keywords": [
"stream",
"promise",
"backpressure",
"transform"
],
"author": "Martin Poelstra <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/poelstra/ts-stream/issues"
},
"homepage": "https://github.com/poelstra/ts-stream#readme",
"dependencies": {
"@types/node": "*"
},
"typings": "./dist/lib/index.d.ts",
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/chai-as-promised": "^7.1.3",
"@types/mocha": "^8.0.0",
"@types/sinon": "^9.0.4",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.1.0",
"mocha": "^8.0.1",
"nyc": "^15.1.0",
"prettier": "^2.0.5",
"sinon": "^9.0.2",
"source-map-support": "^0.5.19",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.9.6"
}
}