-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
46 lines (46 loc) · 1.3 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
{
"name": "vue-qart",
"description": "the Vue 2.x component of QArt.js",
"version": "2.2.0",
"author": "[email protected]",
"repository": "https://github.com/superman66/vue-qart",
"main": "dist/vue-qart.js",
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server --open --inline --hot",
"prepages": "cross-env NODE_ENV=production webpack --progress",
"pages": "node demo/gh-pages.js",
"build": "rm -rf dist/ && cross-env NODE_ENV=production webpack --config webpack.config.build.js --progress --hide-modules",
"release": "nrm use npm && npm publish"
},
"dependencies": {
"qartjs": "1.1.1"
},
"peerDependencies": {
"vue": "^2.5.0"
},
"files": [
"dist/"
],
"devDependencies": {
"babel-core": "^6.0.0",
"babel-loader": "^6.0.0",
"babel-preset-es2015": "^6.0.0",
"cross-env": "^3.0.0",
"css-loader": "^0.25.0",
"cz-conventional-changelog": "^2.1.0",
"file-loader": "^0.9.0",
"gh-pages": "^1.1.0",
"vue": "^2.5.0",
"vue-loader": "^10.0.0",
"vue-template-compiler": "^2.1.0",
"webpack": "^2.2.0",
"webpack-dev-server": "^2.2.0",
"html-webpack-plugin": "^2.30.1",
"webpack-merge": "^2.6.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}