-
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": "oleoduc",
"version": "0.8.1",
"description": "Stream with ease",
"engines": {
"node": ">= 10"
},
"keywords": [
"stream",
"streams",
"pipeline",
"pipe",
"transform",
"parallel"
],
"main": "./index.js",
"module": "./dist/bundle.mjs",
"exports": {
".": {
"require": "./index.js",
"import": "./dist/bundle.mjs"
}
},
"scripts": {
"build": "npx rollup --config rollup.config.mjs",
"hooks": "git config core.hooksPath .tools/git-hooks && chmod +x .tools/git-hooks/*",
"test": "mocha --recursive --exit --timeout 1000 test/",
"coverage": "nyc --temp-dir .coverage/.nyc_output --report-dir .coverage --reporter=lcov --reporter=html npm test",
"lint": "eslint index.js test/",
"release": "bash .tools/release.sh master"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bguerout/oleoduc.git"
},
"author": "Benoît Guérout",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/bguerout/oleoduc/issues"
},
"homepage": "https://github.com/bguerout/oleoduc#readme",
"dependencies": {
"cyclist": "1.0.1",
"parallel-transform": "1.2.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "22.0.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-mocha": "9.0.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.0.0",
"mocha": "9.2.2",
"nyc": "15.1.0",
"prettier": "2.6.2",
"rollup": "2.74.1",
"slow-stream": "0.0.4"
},
"prettier": {
"printWidth": 120
}
}