-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
83 lines (83 loc) · 2.19 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
{
"name": "vue-gaspard",
"version": "2.0.0",
"description": "DOM helpers plugin for Vue.js",
"homepage": "https://github.com/lucaperret/vue-gaspard",
"bugs": "https://github.com/lucaperret/vue-gaspard/issues",
"repository": "lucaperret/vue-gaspard",
"author": "Luca Perret <[email protected]>",
"license": "MIT",
"keywords": [
"vue",
"plugin",
"jquery",
"dom",
"helper",
"document",
"selector",
"attribute",
"position",
"selector"
],
"main": "dist/vue-gaspard.umd.js",
"module": "src/index.js",
"scripts": {
"dev": "webpack-dev-server --open -d",
"test": "jest",
"test:watch": "jest --watch",
"build": "webpack --env.production --progress --config webpack.config.js",
"commit": "git-cz",
"coveralls": "cat test/coverage/lcov.info | coveralls"
},
"peerDependencies": {
"vue": "^2.0.0"
},
"dependencies": {
"gaspard": "^4.1.0"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-loader": "^7.1.2",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-2": "^6.24.1",
"commitizen": "^2.9.6",
"coveralls": "^2.13.1",
"css-loader": "^0.28.5",
"cz-conventional-changelog": "^2.0.0",
"eslint": "^4.5.0",
"eslint-config-standard": "^10.2.1",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-html": "^3.2.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jest": "^20.0.3",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"friendly-errors-webpack-plugin": "^1.6.1",
"html-webpack-plugin": "^2.30.1",
"jest": "^20.0.4",
"vue": "^2.0.0",
"vue-loader": "^13.0.4",
"vue-template-compiler": "^2.4.2",
"webpack": "^3.4.1",
"webpack-dev-server": "^2.6.1"
},
"engines": {
"node": ">= 4.0.0",
"npm": ">= 3.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}