forked from matiastucci/vue-input-tag
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
86 lines (86 loc) · 2.43 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
{
"name": "better-vue-input-tag",
"version": "1.1.0",
"description": "Vue.js input tag editor component",
"keywords": [
"input",
"tag",
"inputtag"
],
"author": "Matias Tucci <matiastucci@gmail.com>",
"contributors": [
"Hugo Alliaume <hugo@yproximite.com"
],
"main": "dist/vue-input-tag.min.js",
"repository": "https://github.com/Yproximite/better-vue-input-tag",
"homepage": "https://yproximite.github.io/better-vue-input-tag",
"license": "MIT",
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server --open --hot",
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules",
"build:docs": "cross-env NODE_ENV=docs webpack --progress --hide-modules",
"lint": "eslint --ext .js,.vue src test/unit/specs",
"lint:fix": "eslint --fix .",
"prepublish": "npm run build && npm run build:docs",
"test": "jest --coverage"
},
"dependencies": {
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"loader-utils": "^1.1.0"
},
"devDependencies": {
"autoprefixer": "^8.2.0",
"babel-core": "^6.26.0",
"babel-jest": "^22.4.3",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"coveralls": "^3.0.0",
"cross-env": "^5.1.0",
"css-loader": "^0.28.7",
"eslint": "^4.9.0",
"eslint-config-standard": "^10.2.1",
"eslint-loader": "^2.0.0",
"eslint-plugin-html": "^3.2.2",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"file-loader": "^1.1.5",
"jest": "^22.4.3",
"jest-vue-preprocessor": "^1.3.1",
"jsdom": "^11.3.0",
"less": "^3.0.1",
"less-loader": "^4.0.5",
"node-sass": "^4.5.3",
"pre-commit": "^1.2.2",
"pug": "^2.0.0-rc.4",
"sass-loader": "^7.0.1",
"vue": "^2.5.13",
"vue-loader": "^14.2.2",
"vue-server-renderer": "^2.5.13",
"vue-template-compiler": "^2.5.13",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.3"
},
"pre-commit": [
"lint"
],
"engines": {
"node": ">= 6.0.0",
"npm": ">= 4.0.0"
},
"jest": {
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".*\\.(vue)$": "<rootDir>/node_modules/jest-vue-preprocessor"
}
},
"browserify": {
"transform": [
"vueify"
]
}
}