-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.36 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
{
"name": "eventin",
"version": "2.0.4",
"description": "Strongly-typed event emitter.",
"keywords": [
"EventEmitter",
"TypeScript"
],
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"homepage": "https://github.com/mebtte/eventin#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/mebtte/eventin.git"
},
"bugs": {
"url": "https://github.com/mebtte/eventin/issues"
},
"author": {
"name": "mebtte",
"email": "hi@mebtte.com",
"url": "https://mebtte.com"
},
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@rollup/plugin-typescript": "^11.1.5",
"@types/jest": "^29.5.8",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard-with-typescript": "^39.1.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.3.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"prettier": "^2.7.1",
"rimraf": "^5.0.5",
"rollup": "^4.4.1",
"rollup-plugin-dts": "^6.1.0",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
},
"scripts": {
"build": "rimraf dist && rollup --bundleConfigAsCjs --config rollup.config.js",
"test": "jest"
},
"files": [
"dist"
]
}