-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.92 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
{
"name": "@yandeu/events",
"version": "0.0.7",
"description": "⚡ Simplified and TypeScripted version of [email protected]",
"type": "module",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"author": "Yannick Deubel (https://github.com/yandeu)",
"license": "MIT",
"homepage": "https://github.com/yandeu/events#readme",
"repository": {
"type": "git",
"url": "git://github.com/yandeu/events.git"
},
"engines": {
"node": ">=18.2"
},
"keywords": [
"events",
"typescript"
],
"bugs": {
"url": "https://github.com/yandeu/events/issues"
},
"scripts": {
"prepareRelease": "npm install && npm run build",
"start": "npm run dev",
"dev": "npm run build && npm-run-all --parallel dev:*",
"dev:tsc": "tsc --project tsconfig.json --watch",
"format": "prettier --write src/**",
"format:check": "prettier --check src/**",
"lint": "eslint src/**",
"lint:fix": "eslint --fix src/**",
"build": "npm run prune && npm-run-all build:*",
"build:version": "npm run version",
"build:ts": "tsc --project tsconfig.json",
"build:bundle": "npx esbuild --bundle src/index.ts --minify --outfile=bundle/events.min.js --format=esm",
"version": "extract version /src/version.ts",
"prune": "rimraf lib cjs esm umd dist bundle",
"prepublishOnly": "npm run build && npm test",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"devDependencies": {
"@tsconfig/node18": "^18.2.4",
"@types/node": "^22.10.2",
"@yandeu/eslint-config": "^0.0.4",
"@yandeu/extract": "^0.0.3",
"@yandeu/prettier-config": "^0.0.4",
"esbuild": "^0.24.1",
"eslint": "^8.26.0",
"jest": "^29.7.0",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"ts-loader": "^8.0.17",
"typescript": "^5.7.2",
"webpack": "^5.24.2",
"webpack-cli": "^4.5.0"
},
"funding": {
"url": "https://github.com/sponsors/yandeu"
}
}