-
-
Notifications
You must be signed in to change notification settings - Fork 115
/
package.json
46 lines (46 loc) · 1.15 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": "vue2-filters",
"version": "0.14.0",
"description": "A collection of Vue.js filters",
"main": "dist/vue2-filters.js",
"types": "types/index.d.ts",
"scripts": {
"build": "node_modules/.bin/webpack --mode=production",
"dev": "node_modules/.bin/webpack --mode=development --watch",
"test": "node_modules/.bin/karma start test/karma.conf.js --single-run --no-auto-watch"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git://github.com/freearhey/vue2-filters.git"
},
"keywords": [
"vuejs",
"vue",
"filters",
"vue2-filters"
],
"author": "Arhey",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/preset-env": "7.3.4",
"babel-loader": "8.0.4",
"jasmine": "3.3.0",
"karma": "3.1.1",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "2.0.1",
"karma-webpack": "3.0.5",
"puppeteer": "^1.12.2",
"uglify-es": "3.3.9",
"uglifyjs-webpack-plugin": "^2.1.3",
"webpack": "4.26.1",
"webpack-cli": "^3.1.2"
},
"peerDependecies": {
"vue": "^2.0.0"
},
"dependencies": {}
}