-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.03 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
{
"name": "vue-event-registry",
"version": "2.0.1",
"description": "Register, execute und unregister event handlers",
"main": "dist/index.js",
"types": "src/index.d.ts",
"author": "Marcel Solle <msap3rtur3@gmail.com>",
"license": "MIT",
"browserslist": [
"last 2 versions",
"> 0.25%",
"IE >= 10"
],
"scripts": {
"test": "jest",
"build": "webpack --mode production",
"release": "npm run build && np"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ap3rtur3/vue-event-registry.git"
},
"keywords": [
"vue",
"event",
"registry",
"promise",
"unique"
],
"bugs": {
"url": "https://github.com/Ap3rtur3/vue-event-registry/issues"
},
"homepage": "https://github.com/Ap3rtur3/vue-event-registry#readme",
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"babel-loader": "^8.0.6",
"jest": "^26.4.1",
"np": "^6.4.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
},
"np": {
"yarn": false
}
}