-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.57 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
{
"name": "vue-option-events",
"version": "2.0.1",
"description": "Bring Vue.js 1 events option and $emit to Vue.js 2.",
"keywords": [
"vue",
"vue.js",
"event",
"events",
"emit",
"option",
"options",
"bus",
"hub"
],
"repository": {
"type": "git",
"url": "/~https://github.com/Cweili/vue-option-events.git"
},
"author": "Cweili",
"license": "MIT",
"homepage": "/~https://github.com/Cweili/vue-option-events",
"bugs": {
"url": "/~https://github.com/Cweili/vue-option-events/issues"
},
"main": "dist/vue-option-events.cjs.js",
"module": "dist/vue-option-events.esm.js",
"unpkg": "dist/vue-option-events.js",
"jsdelivr": "dist/vue-option-events.js",
"sideEffects": false,
"scripts": {
"build": "rollup -c",
"postbuild": "eslint --fix *.js test/*.js",
"test": "jest test --coverage --testEnvironment jsdom",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/eslint-parser": "^7.16.3",
"@babel/preset-env": "^7.4.4",
"@vue/test-utils": "^1.0.2",
"conventional-changelog-cli": "^5.0.0",
"eslint": "^8.4.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^28.6.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"rollup": "^2.9.1",
"rollup-plugin-babel": "^4.3.0",
"rollup-plugin-node-resolve": "^5.0.0",
"vue": "^2.6.11",
"vue-template-compiler": "^2.6.11"
},
"peerDependencies": {
"vue": ">=2.0.0"
}
}