-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.65 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
{
"name": "vue-ghbtns",
"version": "0.0.6",
"description": "GitHub buttons component for Vue.",
"main": "dist/index.min.js",
"author": "eeve",
"license": "MIT",
"scripts": {
"dev": "webpack-dev-server --config build/webpack.dev.js",
"dist:docs": "rimraf docs && cross-env NODE_ENV=production webpack --config build/webpack.dev.js --display-modules --sort-modules-by size",
"dist": "rimraf dist && webpack --config build/webpack.dist.js --display-modules --sort-modules-by size",
"eslint": "standard --verbose --fix --plugin html 'src/**/*.{js,vue}'",
"test": "npm run eslint",
"prepublish": "npm run eslint && npm run dist && npm run dist:docs"
},
"standard": {
"parser": "babel-eslint"
},
"keywords": [
"star",
"issue",
"button",
"github",
"github-buttons"
],
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"clipboard": "^1.7.1",
"compression-webpack-plugin": "^1.0.0",
"cross-env": "^5.0.5",
"css-loader": "^0.28.7",
"eslint-plugin-html": "^3.2.1",
"friendly-errors-webpack-plugin": "^1.6.1",
"highlightjs": "^9.10.0",
"html-webpack-plugin": "^2.30.1",
"rimraf": "^2.6.2",
"standard": "^10.0.3",
"style-loader": "^0.18.2",
"vue": "^2.4.3",
"vue-loader": "^13.0.4",
"vue-style-loader": "^3.0.2",
"vue-template-compiler": "^2.4.3",
"webpack": "^3.5.6",
"webpack-dev-server": "^2.8.1",
"webpack-merge": "^4.1.0"
},
"dependencies": {
"axios": "^0.16.2"
}
}