forked from jonathanpmartins/v-money3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.35 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
{
"name": "v-money3",
"version": "3.21.1",
"description": "Vue3 currency input/directive mask",
"main": "./dist/v-money3.umd.js",
"module": "./dist/v-money3.es.js",
"exports": {
".": {
"import": "./dist/v-money3.es.js",
"require": "./dist/v-money3.umd.js"
}
},
"typings": "./dist/index.d.ts",
"scripts": {
"lint": "./node_modules/node/bin/node ./node_modules/eslint/bin/eslint.js --ext .ts,.vue ./src",
"dts": "vue-tsc --declaration --emitDeclarationOnly --declarationDir ./dist --removeComments false",
"serve": "./node_modules/node/bin/node ./node_modules/vite/bin/vite.js --host=localhost --port=3000 --open --force",
"build": "./node_modules/node/bin/node ./node_modules/vite/bin/vite.js build; npm run dts",
"test": "./node_modules/node/bin/node ./node_modules/jest/bin/jest.js",
"lock": "npm i --package-lock-only",
"pack": "npm run build; npm pack;",
"prepublish": "npm run build",
"update": "export PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=true; npm update --verbose;"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jonathanpmartins/v-money3.git"
},
"keywords": [
"vue",
"input",
"mask",
"directive",
"currency",
"money"
],
"author": "Jonathan Martins <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jonathanpmartins/v-money3/issues"
},
"homepage": "https://github.com/jonathanpmartins/v-money3#readme",
"peerDependencies": {
"vue": ">= 3.2.0"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "7.18.5",
"@babel/preset-env": "7.18.2",
"@types/jest": "27.4.1",
"@types/jest-environment-puppeteer": "4.4.1",
"@types/puppeteer": "5.4.6",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"@vitejs/plugin-vue": "1.10.2",
"@vue/compiler-sfc": "3.2.37",
"@vue/test-utils": "2.0.0",
"babel-jest": "26.6.3",
"eslint": "7.32.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-airbnb-typescript": "14.0.2",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-vue": "7.20.0",
"jest": "26.6.3",
"jest-puppeteer": "6.1.0",
"node": "16.14.2",
"ts-jest": "26.5.6",
"vite": "2.9.12",
"vue": "3.2.31",
"vue-jest": "5.0.0-alpha.10",
"vue-tsc": "0.37.7"
}
}