-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.76 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
{
"name": "concurrent-streams",
"version": "0.0.1",
"description": "Safe concurrent streams for reading and writing file",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": ["dist/**/*"],
"scripts": {
"build": "tsc",
"lint": "tslint --project tsconfig.json",
"pretty": "yarn lint && prettier --write 'src/**/*.ts'",
"prepublishOnly": "yarn lint && yarn test",
"test": "nyc mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mvisat/concurrent-streams.git"
},
"keywords": [
"concurrent",
"streams"
],
"author": "Muhamad Visat Sutarno",
"license": "MIT",
"bugs": {
"url": "https://github.com/mvisat/concurrent-streams/issues"
},
"homepage": "https://github.com/mvisat/concurrent-streams#readme",
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"async-rwlock": "^1.0.0",
"emittery": "^0.4.1"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/chai-as-promised": "^7.1.0",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.18",
"@types/proxyquire": "^1.3.28",
"@types/sinon": "^7.0.5",
"@types/sinon-chai": "^3.2.2",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"prettier": "^1.16.1",
"proxyquire": "^2.1.0",
"sinon": "^7.2.3",
"sinon-chai": "^3.3.0",
"source-map-support": "^0.5.10",
"ts-node": "^8.0.2",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.17.0",
"typescript": "^3.2.4"
},
"nyc": {
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"include": [
"src/**/*.ts"
],
"exclude": [
"**/*.d.ts"
],
"reporter": [
"html",
"text"
],
"all": true
}
}