forked from matiastucci/vue-input-tag
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.28 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
{
"name": "vue-input-tag",
"version": "1.0.3",
"description": "Vue.js input tag editor component",
"keywords": [
"input",
"tag",
"inputtag"
],
"author": "Matias Tucci <matiastucci@gmail.com>",
"main": "dist/vue-input-tag.min.js",
"repository": "https://github.com/matiastucci/vue-input-tag",
"homepage": "https://matiastucci.github.io/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",
"test": "jest --coverage"
},
"dependencies": {
"babel-plugin-transform-runtime": "^6.0.0",
"babel-preset-es2015": "^6.0.0",
"babel-preset-stage-2": "^6.0.0",
"loader-utils": "^1.1.0",
"vue": "^2.1.8"
},
"devDependencies": {
"autoprefixer": "^6.4.0",
"babel-core": "^6.1.21",
"babel-jest": "^20.0.3",
"babel-loader": "^6.1.0",
"babel-preset-es2015": "^6.0.0",
"babel-preset-stage-2": "^6.0.0",
"coveralls": "^2.11.15",
"cross-env": "^3.0.0",
"css-loader": "^0.25.0",
"eslint": "^4.2.0",
"eslint-config-standard": "^10.2.1",
"eslint-loader": "^1.9.0",
"eslint-plugin-html": "^3.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"file-loader": "^0.9.0",
"jest": "^20.0.4",
"jest-vue-preprocessor": "^1.0.1",
"jsdom": "^11.1.0",
"less": "^2.7.2",
"less-loader": "^4.0.5",
"node-sass": "^3.4.1",
"pre-commit": "^1.2.2",
"pug": "^2.0.0-beta6",
"sass-loader": "^3.1.1",
"vue": "^2.4.0",
"vue-loader": "^12.1.0",
"vue-server-renderer": "^2.4.1",
"vue-template-compiler": "^2.3.3",
"webpack": "^2.7.0",
"webpack-dev-server": "^2.4.5"
},
"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"
}
}
}