-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.48 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
63
64
65
{
"name": "@humanwhocodes/async-event-emitter",
"version": "1.0.1",
"description": "Async event emitter",
"main": "dist/async-event-emitter.cjs",
"module": "dist/async-event-emitter.js",
"type": "module",
"types": "dist/async-event-emitter.d.ts",
"exports": {
"require": "./dist/async-event-emitter.cjs",
"import": "./dist/async-event-emitter.js"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/nzakas"
},
"scripts": {
"build": "rollup -c && tsc",
"prepare": "npm run build",
"lint": "eslint src/ tests/",
"pretest": "npm run build",
"test:unit": "c8 mocha tests/async-event-emitter.test.js",
"test:build": "node tests/pkg.test.cjs && node tests/pkg.test.mjs",
"test": "npm run test:unit && npm run test:build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/humanwhocodes/async-event-emitter.git"
},
"keywords": [
"events",
"eventemitter",
"async",
"promises"
],
"engines": {
"node": ">=14"
},
"author": "Nicholas C. Zaks",
"license": "Apache-2.0",
"devDependencies": {
"c8": "7.12.0",
"chai": "4.3.6",
"eslint": "8.21.0",
"lint-staged": "13.0.3",
"mocha": "9.2.2",
"rollup": "2.77.2",
"typescript": "4.7.4",
"yorkie": "2.0.0"
}
}