-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
126 lines (126 loc) · 4.26 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
{
"name": "@persian-tools/vue-persian-tools",
"version": "0.14.0",
"private": false,
"description": "Persian tools wrapper for vue.js",
"author": "mediv0<mahdi.wtf>",
"license": "MIT",
"main": "./dist/index",
"types": "./dist/index.d.ts",
"files": [
"dist/*"
],
"homepage": "https://github.com/persian-tools/vue-persian-tools",
"repository": {
"type": "git",
"url": "https://github.com/persian-tools/vue-persian-tools"
},
"bugs": {
"url": "https://github.com/persian-tools/vue-persian-tools/issues"
},
"keywords": [
"persian tools",
"number to persian words",
"persian words to number",
"Arabic numbers to Persian",
"Arabic numbers to English",
"English numbers to Persian",
"Persian numbers to English",
"verify iranian national id",
"verify iranian card-number",
"Persian zero-width non-joiner",
"vue persian tools",
"persian tools for vue2",
"persian tools for vue3",
"persian tools wrapper"
],
"scripts": {
"build": "node scripts/components.js",
"lint": "vue-cli-service lint",
"pretty": "prettier src/**/* --write",
"test": "vue-cli-service test:unit",
"storybook": "start-storybook -p 6006",
"storybook:build": "build-storybook -o docs-build",
"cz:init": "./node_modules/commitizen/bin/commitizen init cz-conventional-changelog --yarn --dev --exact",
"cz": "npx cz",
"release:major": "standard-version \"--release-as\" \"major\"",
"release:minor": "standard-version \"--release-as\" \"minor\"",
"release:patch": "standard-version \"--release-as\" \"patch\""
},
"dependencies": {
"@persian-tools/persian-tools": "3.0.1",
"vue-demi": "^0.7.1"
},
"devDependencies": {
"@babel/core": "^7.13.8",
"@babel/preset-env": "^7.13.9",
"@babel/preset-typescript": "^7.13.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"@rollup/plugin-replace": "^2.4.1",
"@storybook/addon-actions": "^6.2.0-beta.9",
"@storybook/addon-essentials": "^6.2.0-beta.9",
"@storybook/addon-links": "^6.2.0-beta.9",
"@storybook/vue3": "^6.2.0-beta.9",
"@types/jest": "^24.0.19",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-typescript": "~4.5.0",
"@vue/cli-plugin-unit-jest": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/compiler-sfc": "^3.0.0",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^5.0.2",
"@vue/test-utils": "^2.0.0-0",
"babel-loader": "^8.2.2",
"brotli": "^1.3.2",
"chalk": "^4.1.0",
"commitizen": "^4.2.3",
"core-js": "^3.6.5",
"cz-conventional-changelog": "3.3.0",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-vue": "^7.0.0-0",
"execa": "^5.0.0",
"fs-extra": "^9.1.0",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1",
"rollup": "^2.40.0",
"rollup-plugin-generate-declarations": "^1.1.1",
"rollup-plugin-multi-input": "^1.3.1",
"rollup-plugin-terser": "^7.0.2",
"standard-version": "^9.1.1",
"typescript": "~3.9.3",
"vue": "^3.0.0",
"vue-class-component": "^8.0.0-0",
"vue-jest": "^5.0.0-0",
"vue-loader": "^16.1.2",
"zlib": "^1.0.5"
},
"peerDependencies": {
"vue": "^2.0.0 || >=3.0.0-rc.0"
},
"gitHooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true",
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"vue-cli-service lint",
"git add"
]
},
"peerDependenciesMeta": {
"@vue/composition-api": {
"optional": true
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}