generated from pallad-ts/repository-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1009 Bytes
/
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
{
"name": "@pallad/micro-events",
"version": "1.1.0",
"description": "Minimal, type friendly event emitter",
"main": "compiled/index.js",
"types": "compiled/index.d.ts",
"scripts": {
"test": "jest",
"compile": "tsc -P tsconfig.build.json",
"lint": "eslint src/**/*.ts",
"prepublishOnly": "npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pallad-ts/micro-events.git"
},
"files": [
"compiled"
],
"publishConfig": {
"access": "public"
},
"keywords": [
"events emitter",
"events"
],
"author": "Łukasz Kużyński <lukasz.kuzynski@gmail.com> (https://wookieb.pl)",
"license": "MIT",
"bugs": {
"url": "https://github.com/pallad-ts/micro-events/issues"
},
"homepage": "https://github.com/pallad-ts/micro-events#readme",
"devDependencies": {
"@pallad/scripts": "^4.2.1",
"@types/node": "^18",
"@types/sinon": "^17.0.3",
"conditional-type-checks": "^1.0.6",
"sinon": "^19"
}
}