-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.04 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.04 KB
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
{
"name": "node-hooker",
"version": "2025.09.07-3",
"description": "A powerful and flexible hook system for Node.js, inspired by the WordPress actions and filters API.",
"files": [
"./lib",
"./dist",
"./rollup.config.js",
"./test.js",
"./browser-test.html",
"./LICENSE",
"./CHANGELOG.md",
"./README.md"
],
"main": "./lib/Hooker.js",
"browser": "./dist/node-hooker.umd.js",
"scripts": {
"test": "node test.js",
"build": "rollup -c",
"build:minify": "cross-env NODE_ENV=production rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mamedul/node-hooker.git"
},
"keywords": [
"hooks",
"actions",
"filters",
"events",
"wordpress",
"plugin",
"architecture",
"extensible"
],
"author": "MAMEDUL ISLAM",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.0",
"cross-env": "^10.0.0",
"rollup": "^4.50.0"
}
}