-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
47 lines (47 loc) · 1.28 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
{
"name": "event-iterator",
"version": "2.0.0",
"description": "Convert event emitters and event targets to ES async iterators",
"homepage": "https://github.com/rolftimmermans/event-iterator",
"license": "MIT",
"author": "Rolf Timmermans <[email protected]>",
"repository": "rolftimmermans/event-iterator",
"keywords": [
"async",
"async-iterator",
"event-emitter",
"event-target",
"stream",
"await",
"for-await",
"esnext",
"node",
"browser"
],
"main": "lib/node.js",
"browser": "lib/dom.js",
"devDependencies": {
"@types/chai": ">= 0",
"@types/jsdom": ">= 0",
"@types/mocha": ">= 0",
"@types/node": ">= 8.0",
"@types/sinon": ">= 7.5.1",
"@typescript-eslint/eslint-plugin": "^3.2.0",
"@typescript-eslint/parser": "^3.2.0",
"chai": ">= 4.1",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"jsdom": ">= 11.0",
"mocha": ">= 3.1",
"prettier": "^2.0.5",
"ts-node": ">= 3.3",
"typescript": ">= 3.3",
"sinon": ">= 7.5.0"
},
"scripts": {
"lint": "eslint src/**/*.ts test/**/*.ts",
"fmt": "eslint --fix src/**/*.ts test/**/*.ts",
"test": "mocha --require ts-node/register test/*-test.ts && rm -rf lib && tsc"
}
}