-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.44 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.44 KB
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
{
"name": "streamss-through",
"version": "2.0.1",
"description": "A sync/async stream2 transformer",
"keywords": [
"stream2",
"through",
"transform"
],
"homepage": "https://github.com/commenthol/streamss-through",
"bugs": {
"url": "https://github.com/commenthol/streamss-through/issues"
},
"repository": {
"type": "git",
"url": "github.com/commenthol/streamss-through"
},
"license": "MIT",
"author": "commenthol <commenthol@gmail.com>",
"maintainers": [
"commenthol <commenthol@gmail.com>"
],
"main": "./index.js",
"typings": "./types",
"directories": {
"example": "examples",
"test": "test"
},
"scripts": {
"all": "npm run clean && npm run lint && npm test",
"build:tsc": "tsc --build types; find types -iname '*.js' -exec rm '{}' \\;",
"clean": "rimraf coverage .nyc_output",
"clean:all": "rimraf node_modules && npm run clean",
"coverage": "nyc -r text -r html npm test",
"doc": "jsdoc -d doc -c jsdoc.json index.js",
"lint": "eslint --fix \"**/*.js\"",
"prepublishOnly": "npm run all",
"test": "mocha"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"mocha": "^9.1.2",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"typescript": "^4.4.3"
},
"engines": {
"node": ">=10.0.0"
}
}