-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
82 lines (82 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
76
77
78
79
80
81
82
{
"name": "vue-input-ui",
"version": "1.0.3",
"description": "A beautiful input made with Vue JS",
"author": "Louis Mazel <[email protected]>",
"scripts": {
"serve": "vue-cli-service serve --mode development --open",
"serve:nuxt": "nuxt src",
"build": "npm run build:lib && npm run build:docs",
"test": "vue-cli-service test:unit /test/specs",
"lint": "vue-cli-service lint && npm run lint:style",
"lint:style": "stylelint 'src/**/*.scss' 'src/**/*.vue'",
"lint:style:fix": "stylelint 'src/**/*.scss' 'src/**/*.vue' --fix",
"before-publish": "npm i && npm run lint && npm audit && npm run build",
"build:docs": "vue-cli-service build --dest docs --mode production",
"build:lib": "vue-cli-service build --target lib ./src/VueInputUi/index.vue",
"publish-npm:beta": "npm publish --tag beta",
"serve:build": "vue-cli-service serve --mode production",
"test:unit": "vue-cli-service test:unit",
"test:unit:watch": "vue-cli-service test:unit --watch",
"ui": "vue ui"
},
"files": [
"dist/",
"nuxt/"
],
"dependencies": {
"css-vars-ponyfill": "^2.1.2",
"style-helpers": "^0.2.8",
"vue": "^2.5.21"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.3.0",
"@vue/cli-plugin-eslint": "^3.3.0",
"@vue/cli-service": "^3.7.0",
"babel-eslint": "^10.0.1",
"color-transformer-ui": "0.0.2",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.0.0",
"node-sass": "^4.12.0",
"nuxt": "^2.9.2",
"path": "^0.12.7",
"sass-loader": "^7.1.0",
"stylelint": "^11.1.1",
"stylelint-config-standard": "^19.0.0",
"stylelint-order": "^3.1.1",
"stylelint-scss": "^3.12.1",
"vue-server-renderer": "^2.6.9",
"vue-template-compiler": "^2.5.21"
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"keywords": [
"vue",
"vuejs",
"input",
"text",
"number",
"ui",
"javascript",
"vue-component"
],
"license": "MIT",
"main": "dist/vue-input-ui.common.js",
"repository": {
"type": "git",
"url": "git+https://github.com/LouisMazel/vue-input-ui.git"
},
"bugs": {
"url": "https://github.com/LouisMazel/vue-input-ui/issues"
},
"homepage": "https://github.com/LouisMazel/vue-input-ui#readme",
"types": "dist/index.d.ts"
}