-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
156 lines (156 loc) · 4.53 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
{
"name": "vue-raven",
"version": "1.0.3",
"description": "A Vue plugin to reports exceptions",
"author": {
"name": "Antério Vieira",
"email": "[email protected]",
"url": "https://anteriovieira.github.io"
},
"keywords": [
"vue",
"raven",
"sentry",
"error",
"tracking",
"log"
],
"contributors": [
"Antério vieira <[email protected]>"
],
"main": "dist/vue-raven.common.js",
"module": "dist/vue-raven.esm.js",
"browser": "dist/vue-raven.js",
"unpkg": "dist/vue-raven.js",
"style": "dist/vue-raven.css",
"files": [
"dist",
"src",
"types/*.d.ts"
],
"scripts": {
"clean": "rimraf dist",
"unit": "jest",
"build": "yon run build:common && yon run build:browser && yon run build:browser:min",
"build:common": "cross-env NODE_ENV=common webpack --config build/webpack.config.common.js --progress --hide-modules",
"build:browser:base": "webpack --config build/webpack.config.browser.js --progress --hide-modules",
"build:browser": "cross-env NODE_ENV=browser yon run build:browser:base",
"build:browser:min": "cross-env NODE_ENV=production yon run build:browser:base -- -p",
"build:dll": "webpack --progress --config build/webpack.config.dll.js",
"lint": "yon run lint:js",
"lint:js": "eslint --ext js src test/**/*.spec.js test/*.js build",
"lint:js:fix": "yon run lint:js -- --fix",
"lint:css": "stylelint src/**/*.{vue,css}",
"lint:staged": "lint-staged",
"dev": "webpack-dashboard -- webpack-dev-server --config build/webpack.config.dev.js --open",
"prepublish": "yon run build",
"test": "yon run unit",
"changelog": "node build/utils/changelog.js"
},
"lint-staged": {
"*.{vue,jsx,js}": [
"eslint --fix"
]
},
"pre-commit": "lint:staged",
"devDependencies": {
"@vue/test-utils": "^1.0.0-beta.11",
"add-asset-html-webpack-plugin": "^2.0.0",
"babel-core": "^6.24.0",
"babel-eslint": "^7.2.0",
"babel-helper-vue-jsx-merge-props": "^2.0.0",
"babel-jest": "^22.2.2",
"babel-loader": "^7.0.0",
"babel-plugin-istanbul": "^4.1.0",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-plugin-transform-vue-jsx": "^3.4.0",
"babel-preset-env": "^1.6.1",
"codecov": "^3.0.0",
"conventional-changelog": "^2.0.3",
"cross-env": "^4.0.0",
"css-loader": "^0.28.0",
"eslint": "^3.19.0",
"eslint-config-vue": "^2.0.0",
"eslint-plugin-vue": "^2.0.0",
"execa": "^1.0.0",
"extract-text-webpack-plugin": "^2.1.0",
"html-webpack-plugin": "^2.28.0",
"jest": "^22.2.2",
"lint-staged": "^3.4.0",
"null-loader": "^0.1.1",
"postcss": "^6.0.0",
"postcss-cssnext": "^2.10.0",
"pre-commit": "^1.2.0",
"rimraf": "^2.6.0",
"sinon": "2.2.0",
"style-loader": "^0.17.0",
"stylefmt": "^5.3.0",
"stylelint": "^7.10.0",
"stylelint-config-standard": "^16.0.0",
"stylelint-processor-html": "^1.0.0",
"uppercamelcase": "^3.0.0",
"vue": "^2.5.13",
"vue-jest": "^2.1.0",
"vue-loader": "^12.0.0",
"vue-template-compiler": "^2.5.13",
"webpack": "^2.5.0",
"webpack-bundle-analyzer": "^2.4.0",
"webpack-dashboard": "^0.4.0",
"webpack-dev-server": "^2.4.0",
"webpack-merge": "^4.0.0",
"yarn-or-npm": "^2.0.0"
},
"peerDependencies": {
"vue": "^2.3.0"
},
"dllPlugin": {
"name": "vuePluginTemplateDeps",
"include": [
"html-entities",
"vue/dist/vue.js",
"core-js/library",
"url",
"sockjs-client",
"vue-style-loader/lib/addStylesClient.js",
"events",
"ansi-html",
"style-loader/addStyles.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/anteriovieira/vue-raven.git"
},
"bugs": {
"url": "https://github.com/anteriovieira/vue-raven/issues"
},
"homepage": "https://github.com/anteriovieira/vue-raven#readme",
"license": "MIT",
"dependencies": {
"raven-js": "^3.22.3"
},
"jest": {
"collectCoverage": true,
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest"
},
"coveragePathIgnorePatterns": [
"<rootDir>/test/*.js",
"<rootDir>/test/utils/Helper.vue",
"<rootDir>/test/.*.js",
"<rootDir>/test/*/*.js"
],
"setupFiles": [
"<rootDir>/test/setup.js"
]
},
"typings": "types/index.d.ts"
}