-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.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
{
"name": "vue-glitch",
"version": "1.0.1",
"description": "Vue.js component to apply glitch effect in any kind of text",
"main": "dist/vue-glitch.min.js",
"author": "Ignacio Anaya <ignacio.anaya89@gmail.com>",
"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",
"lint:fix": "eslint . --fix .js",
"prepublish": "npm run build",
"start": "serve --single",
"test": "jest"
},
"devDependencies": {
"babel-core": "^6.1.21",
"babel-jest": "^20.0.3",
"babel-loader": "^6.1.0",
"babel-preset-env": "^1.6.0",
"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": "^16.5.0",
"less": "^2.7.2",
"less-loader": "^4.0.5",
"node-sass": "^7.0.0",
"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": "^3.1.11"
},
"pre-commit": [
"lint"
],
"engines": {
"node": ">= 6"
},
"repository": "git@github.com:ianaya89/vue-glitch.git",
"jest": {
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".*\\.(vue)$": "<rootDir>/node_modules/jest-vue-preprocessor"
}
}
}