-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.44 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": "streamss",
"version": "2.0.1",
"description": "stream2 event streams",
"keywords": [
"event-streams",
"stream2"
],
"homepage": "https://github.com/commenthol/streamss",
"bugs": {
"url": "https://github.com/commenthol/streamss/issues"
},
"repository": {
"type": "git",
"url": "github.com/commenthol/streamss"
},
"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"
},
"dependencies": {
"streamss-through": "^2.0.1"
},
"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"
}
}