-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.14 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.14 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
{
"name": "make-event-iterator",
"version": "0.2.0",
"description": "Create an iterator from an event emitter",
"main": "lib/event-iterator.ts",
"types": "lib/event-iterator.d.ts",
"directories": {
"lib": "lib"
},
"scripts": {
"build": "tsc",
"lint": "eslint '*/**/*.ts'",
"test": "jest --watch",
"test:ci": "jest",
"test:coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smujmaiku/make-event-iterator.git"
},
"author": "Michael Szmadzinski",
"license": "MIT",
"bugs": {
"url": "https://github.com/smujmaiku/make-event-iterator/issues"
},
"homepage": "https://github.com/smujmaiku/make-event-iterator#readme",
"devDependencies": {
"@babel/preset-env": "^7.11.0",
"@babel/preset-typescript": "^7.10.4",
"@types/jest": "^26.0.10",
"@types/node": "^14.6.0",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"babel-plugin-replace-ts-export-assignment": "^0.0.2",
"eslint": "^7.7.0",
"jest": "^26.4.2",
"typescript": "^4.1.5"
},
"dependencies": {
"just-defer": "^0.2.5"
}
}