This repository has been archived by the owner on Aug 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
103 lines (103 loc) · 2.89 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
{
"name": "vue-string-filter",
"version": "2.1.0",
"private": false,
"description": "Lightweight Vue filter for string manipulation ",
"author": "Irfan Maulana (https://github.com/mazipan/)",
"scripts": {
"serve": "vue-cli-service serve",
"test:unit": "vue-cli-service test:unit",
"test": "vue-cli-service test:unit",
"lint": "vue-cli-service lint --fix",
"build:demo": "cross-env NODE_ENV=production vue-cli-service build --dest demo",
"build:lib": "cross-env NODE_ENV=production tsc ./src/lib/index.ts -m CommonJS --outDir ./dist --declaration",
"check:size": "node ./check-size.js",
"dev": "vue-cli-service serve",
"prepare": "yarn build:lib"
},
"main": "dist/index.js",
"module": "dist/index.js",
"unpkg": "dist/index.js",
"files": [
"dist"
],
"dependencies": {
"vue": "^2.6.11"
},
"devDependencies": {
"@types/jest": "^26.0.3",
"@types/node": "14.0.14",
"@typescript-eslint/eslint-plugin": "3.5.0",
"@typescript-eslint/parser": "3.5.0",
"@vue/cli-plugin-babel": "4.4.6",
"@vue/cli-plugin-eslint": "4.4.6",
"@vue/cli-plugin-pwa": "4.4.6",
"@vue/cli-plugin-router": "4.4.6",
"@vue/cli-plugin-typescript": "4.4.6",
"@vue/cli-plugin-unit-jest": "^4.4.6",
"@vue/cli-plugin-vuex": "4.4.6",
"@vue/cli-service": "4.4.6",
"@vue/eslint-config-standard": "5.1.2",
"@vue/eslint-config-typescript": "5.0.2",
"@vue/test-utils": "^1.0.3",
"babel-eslint": "10.1.0",
"bulma-dracula": "1.0.4",
"bytes": "3.1.0",
"chalk": "4.1.0",
"core-js": "3.6.5",
"cross-env": "^7.0.2",
"eslint": "7.3.1",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"eslint-plugin-vue": "6.2.2",
"gzip-size": "5.1.1",
"husky": "4.2.5",
"jest": "^26.1.0",
"lint-staged": "10.2.11",
"node-sass": "4.13.1",
"prismjs": "1.24.0",
"register-service-worker": "1.7.1",
"sass-loader": "8.0.0",
"tsc": "latest",
"typescript": "3.9.6",
"vue-class-component": "7.2.3",
"vue-google-adsense": "1.8.3",
"vue-prism-component": "1.2.0",
"vue-property-decorator": "9.0.0",
"vue-router": "3.3.4",
"vue-script2": "2.1.0",
"vue-template-compiler": "2.6.11",
"vuex": "3.5.1"
},
"peerDependencies": {
"vue": "2.6.11"
},
"bugs": {
"url": "https://github.com/mazipan/vue-string-filter/issues"
},
"homepage": "https://mazipan.github.io/vue-currency-filter/",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"jsdelivr": "dist/VueStringFilter.js",
"keywords": [
"vue string",
"vue string filter",
"vue filter"
],
"license": "MIT",
"lint-staged": {
"*.{js,vue}": [
"yarn lint",
"git add"
]
},
"repository": {
"type": "git",
"url": "https://github.com/mazipan/vue-string-filter.git"
}
}