-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
84 lines (84 loc) · 2.83 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
{
"name": "v-money3",
"version": "3.24.1",
"description": "Vue3 currency input/directive mask",
"main": "./dist/v-money3.umd.js",
"module": "./dist/v-money3.mjs",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/v-money3.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./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": "npm run test-with-jsdom; npm run test-with-puppeteer;",
"test-with-puppeteer": "./node_modules/node/bin/node ./node_modules/jest/bin/jest.js --config=jest.config.js --env=puppeteer tests/env/puppeteer/",
"test-with-jsdom": "./node_modules/node/bin/node ./node_modules/jest/bin/jest.js --config=jest.config.js --env=jsdom tests/env/jsdom/",
"lock": "npm i --package-lock-only",
"pack": "npm run build; npm pack;",
"prepublish": "npm run build",
"update": "export PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=true; export PUPPETEER_SKIP_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.23.9",
"@babel/preset-env": "7.23.9",
"@types/jest": "29.5.11",
"@types/jest-environment-puppeteer": "5.0.6",
"@types/puppeteer": "5.4.7",
"@typescript-eslint/eslint-plugin": "6.19.1",
"@typescript-eslint/parser": "6.19.1",
"@vitejs/plugin-vue": "5.0.3",
"@vue/compiler-sfc": "3.4.15",
"@vue/test-utils": "2.4.4",
"@vue/vue3-jest": "29.2.6",
"babel-jest": "29.7.0",
"eslint": "8.56.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "17.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-vue": "9.20.1",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-puppeteer": "9.0.2",
"node": "18.17.0",
"ts-jest": "29.1.2",
"vite": "5.0.12",
"vue": "3.4.15",
"vue-tsc": "1.8.27"
}
}