-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1023 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
39
{
"name": "@michaelfranzl/captain-hook",
"version": "2.0.1",
"description": "Configurable event emitter behavior for mixing into JavaScript objects/prototypes/classes",
"main": "src/captain-hook.js",
"scripts": {
"test": "./node_modules/.bin/mocha ./tests/test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/michaelfranzl/captain-hook.git"
},
"keywords": [
"javascript",
"eventemitter",
"plugin-api",
"javascript-library",
"mixin",
"hooks",
"filters",
"actions"
],
"author": "Michael Franzl",
"license": "MIT",
"bugs": {
"url": "https://github.com/michaelfranzl/captain-hook/issues"
},
"homepage": "https://github.com/michaelfranzl/captain-hook",
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-mocha": "^6.2.2",
"jsdoc-to-markdown": "^5.0.3",
"mocha": "^7.1.1",
"showdown": "^1.8.2"
},
"type": "module"
}