-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.34 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.34 KB
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
{
"name": "vue-loop-helper",
"version": "0.1.0",
"description": "Vue Loop Plugin",
"main": "dist/vue-loop.js",
"types": "src/types/index.d.ts",
"files": [
"dist",
"src",
"nuxt"
],
"scripts": {
"build": "cross-env NODE_ENV=production webpack --config webpack.config.js"
},
"lint-staged": {
"src/**/*.js": [
"prettier --single-quote --write",
"git add"
],
"examples/**/*.js": [
"prettier --single-quote --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/hmon/vue-loop.git"
},
"keywords": [
"vue",
"querystring",
"state",
"sync"
],
"author": "Alireza Hamoony <ubtik@outlook.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hmon/vue-loop/issues"
},
"homepage": "https://github.com/hmon/vue-loop#readme",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-loader": "^8.0.6",
"cross-env": "^5.2.0",
"husky": "^3.0.2",
"poi": "^12.7.1",
"prettier": "^1.18.2",
"uglifyjs-webpack-plugin": "^2.2.0",
"vue": "^2.6.14",
"webpack": "^4.39.1",
"webpack-cli": "^3.3.6"
},
"peerDependencies": {
"vue": "^2.6.14"
}
}