-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1015 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
{
"name": "@jeppech/typed-emitter",
"version": "1.1.0",
"description": "Typed event emitter",
"author": "Jeppe Christiansen",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/jeppech/typed-emitter.git"
},
"bugs": {
"url": "https://github.com/jeppech/typed-emitter/issues"
},
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"format": "prettier --config .prettierrc --write 'src/**/*.ts'",
"lint": "eslint -c .eslintrc.json --ext .ts src/",
"build": "rm -rf ./lib/**/* && tsc -p tsconfig.json",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"typescript",
"eventemitter"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"eslint": "^8.52.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
}
}