-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
100 lines (100 loc) · 2.86 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
93
94
95
96
97
98
99
100
{
"name": "vue-feedback-reaction",
"version": "1.1.0",
"description": "Helps you to collect feedback and leads using the most spoken language in the world: the emoji.",
"license": "MIT",
"author": "Controlla <[email protected]>",
"contributors": [
"Ivan Sotelo <[email protected]>"
],
"homepage": "https://IvanSotelo.github.io/VueFeedbackReaction/",
"repository": "IvanSotelo/VueFeedbackReaction",
"bugs": {
"url": "https://github.com/IvanSotelo/VueFeedbackReaction/issues"
},
"scripts": {
"serve": "vue-cli-service serve --hot",
"release": "npm run build-bundle && standard-version && git push --follow-tags && npm publish",
"build": "vue-cli-service build",
"build-bundle": "vue-cli-service build --target lib --name VueFeedbackReaction ./src/index.js",
"lint": "vue-cli-service lint",
"lint-md": "remark .",
"test:e2e": "vue-cli-service test:e2e",
"test:unit": "vue-cli-service test:unit",
"postinstall": "controlla-postinstall || exit 0"
},
"controlla": {
"url": "https://github.com/IvanSotelo/VueFeedbackReaction",
"logoUrl": "https://controlla.com.mx/logo.txt"
},
"dependencies": {
"@controlla/controlla-postinstall": "^1.0.21",
"core-js": "^2.6.5",
"vue": "^2.6.10"
},
"files": [
"dist/*",
"src/*",
"public/*",
"*.json",
"*.js"
],
"style": "dist/VueFeedbackReaction.css",
"main": "./dist/VueFeedbackReaction.common.js",
"unpkg": "dist/VueFeedbackReaction.umd.min.js",
"jsdelivr": "dist/VueFeedbackReaction.umd.min.js",
"private": false,
"keywords": [
"vue",
"vuejs",
"vue-component",
"component",
"vue.js",
"feedback",
"rate",
"facebook",
"controlla",
"reaction",
"animation"
],
"devDependencies": {
"@commitlint/cli": "^7.6.1",
"@commitlint/config-conventional": "^7.6.0",
"@vue/cli-plugin-babel": "^3.9.0",
"@vue/cli-plugin-e2e-nightwatch": "^3.9.0",
"@vue/cli-plugin-eslint": "^3.9.0",
"@vue/cli-plugin-unit-jest": "^3.9.0",
"@vue/cli-service": "^3.9.0",
"@vue/eslint-config-standard": "^4.0.0",
"@vue/test-utils": "1.0.0-beta.29",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.0.0",
"husky": "^2.2.0",
"pug": "^3.0.1",
"pug-plain-loader": "^1.0.0",
"remark-cli": "^7.0.0",
"remark-preset-lint-recommended": "^3.0.3",
"standard-version": "^8.0.1",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"vue-template-compiler": "^2.6.10"
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended",
[
"remark-lint-list-item-indent",
false
]
]
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run lint-md",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}