This repository has been archived by the owner on May 15, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
57 lines (57 loc) · 1.64 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
{
"name": "@vue-currency-filter/monorepo",
"description": "🍒 Lightweight vue currency filter based on accounting.js",
"version": "5.2.0",
"license": "MIT",
"author": "Irfan Maulana (https://github.com/mazipan/)",
"homepage": "https://mazipan.github.io/vue-currency-filter/",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 0",
"dev:demo": "pnpm run dev --filter demo",
"build:lib": "pnpm run build --filter vue-currency-filter",
"build:demo": "pnpm run build --filter demo",
"lint": "eslint packages/** --fix",
"bundlesize": "node ./bundlesize.js"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "4.2.0",
"@typescript-eslint/parser": "4.2.0",
"@vue/cli-plugin-eslint": "4.5.6",
"@vue/eslint-config-standard": "5.1.2",
"@vue/eslint-config-typescript": "5.1.0",
"bytes": "3.1.0",
"chalk": "3.0.0",
"eslint": "7.9.0",
"eslint-config-prettier": "^6.11.0",
"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": "3.1.0",
"lint-staged": "9.5.0",
"prettier": "^2.1.2"
},
"keywords": [
"vue 2 currency",
"vue currency",
"vue currency filter",
"vue filter"
],
"repository": {
"type": "git",
"url": "https://github.com/mazipan/vue-currency-filter.git"
},
"bugs": {
"url": "https://github.com/mazipan/vue-currency-filter/issues"
},
"lint-staged": {
"*.{js,ts,vue}": "pnpm run lint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}