-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.17 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
{
"name": "@poker-apprentice/typed-event-emitter",
"version": "1.0.2",
"description": "Strictly typed Node.js event emitter for TypeScript",
"main": "dist/cjs/index.js",
"types": "dist/types/index.d.ts",
"repository": "https://github.com/poker-apprentice/typed-event-emitter",
"author": "Matt Huggins <[email protected]>",
"license": "MIT",
"private": false,
"keywords": [
"typescript",
"types",
"utility",
"util",
"node",
"nodejs"
],
"files": [
"dist"
],
"scripts": {
"build": "yarn build:types && yarn build:rollup",
"build:types": "tsc -b .",
"build:rollup": "cross-env NODE_ENV=production rollup -c",
"clean": "rimraf dist",
"prepublishOnly": "yarn clean && yarn build"
},
"devDependencies": {
"@babel/core": "^7.22.17",
"@babel/preset-env": "^7.22.15",
"@babel/preset-typescript": "^7.22.15",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/plugin-terser": "^0.4.3",
"@types/node": "^20.6.0",
"cross-env": "^7.0.3",
"rimraf": "^5.0.1",
"rollup": "^3.29.0",
"typescript": "^5.2.2"
}
}