-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.42 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "vue-plugin-events",
"version": "0.0.0-semantic",
"description": "Simple global event bus for Vue.js applications",
"author": "Ricardo Nolde <ricardo@nolde.com.br>",
"main": "src/index.js",
"module": "dist/vue-plugin-events.esm.js",
"browser": "dist/vue-plugin-events.umd.js",
"files": [
"dist",
"src"
],
"scripts": {
"build": "rollup -c",
"test": "tape -r esm -r ./test/env ./test/**/*.test.js | tap-spec",
"lint": "npm run lint-code && npm run lint-unit",
"lint-code": "eslint . --ext .js --ignore-pattern \"*.test.*\"",
"lint-unit": "eslint . --ext .test.js --config test/.eslintrc.js",
"semantic-release": "semantic-release"
},
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "8.2.0",
"@commitlint/config-conventional": "8.2.0",
"@semantic-release/changelog": "3.0.5",
"@semantic-release/git": "7.0.17",
"browser-env": "3.2.6",
"eslint": "6.6.0",
"eslint-config-prettier": "6.5.0",
"eslint-config-standard": "14.1.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-node": "10.0.0",
"eslint-plugin-prettier": "3.1.1",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"esm": "3.2.25",
"husky": "2.4.1",
"lint-staged": "9.4.2",
"prettier": "1.18.2",
"rollup": "1.26.2",
"rollup-plugin-buble": "0.19.8",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-license": "0.12.1",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-replace": "2.2.0",
"semantic-release": "15.13.28",
"sinon": "7.5.0",
"tap-spec": "5.0.0",
"tape": "4.11.0",
"vue": "2.6.10"
},
"lint-staged": {
"**/!(*.test).js": [
"eslint --fix",
"git add"
],
"**/*.test.js": [
"eslint --config test/.eslintrc.js --fix",
"git add"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
},
"repository": {
"type": "git",
"url": "https://github.com/nolde/vue-plugin-events.git"
},
"bugs": {
"url": "https://github.com/nolde/vue-plugin-events/issues"
},
"keywords": [
"vue",
"vuejs",
"vue.js",
"vue2",
"vue-plugin",
"plugin",
"vuejs2",
"events",
"event-bus",
"rollup",
"javascript",
"browser"
],
"homepage": "https://github.com/nolde/vue-plugin-events#readme",
"license": "ISC"
}