-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
64 lines (64 loc) · 1.92 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
{
"name": "vuetify-numeric",
"version": "0.2.1",
"private": false,
"description": "Numeric input components for use with vuetifyjs",
"author": {
"name": "Aleksandr Kolesnikov",
"email": "[email protected]"
},
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"test:unit": "vue-cli-service test:unit",
"lint": "vue-cli-service lint",
"lib": "vue-cli-service build --target lib 'src/components/index.ts'",
"publish": "npm run lib && node postbuild.js"
},
"main": "vuetify-numeric.umd.min.js",
"unpkg": "vuetify-numeric.umd.min.js",
"dependencies": {
"core-js": "^3.6.4",
"vue": "^2.6.14",
"vuetify": "^2.6.3"
},
"devDependencies": {
"@types/jest": "^25.1.4",
"@typescript-eslint/eslint-plugin": "^2.23.0",
"@typescript-eslint/parser": "^2.23.0",
"@vue/cli-plugin-babel": "~4.5.15",
"@vue/cli-plugin-eslint": "~4.5.15",
"@vue/cli-plugin-typescript": "~4.5.15",
"@vue/cli-plugin-unit-jest": "~4.5.15",
"@vue/cli-service": "~4.5.15",
"@vue/eslint-config-standard": "^5.1.2",
"@vue/eslint-config-typescript": "^5.0.2",
"@vue/test-utils": "1.0.0-beta.32",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^6.2.2",
"node-sass": "^4.12.0",
"sass": "^1.19.0",
"sass-loader": "^8.0.2",
"typescript": "~4.1.5",
"vue-cli-plugin-vuetify": "~2.4.5",
"vue-template-compiler": "^2.6.14",
"vuetify-loader": "^1.7.3"
},
"homepage": "https://github.com/kolesnikovav/vuetify-numeric",
"jsdelivr": "vuetify-numeric.umd.min.js",
"keywords": [
"vuetify",
"vue",
"calculator",
"numeric input"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/kolesnikovav/vuetify-numeric.git"
}
}