-
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.8 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.8 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-auth-component",
"description": "Compose a clean Auth UI with these Vue.js components",
"version": "0.0.7",
"author": {
"name": "Marshall Thompson",
"email": "marshall@creativeideal.net"
},
"keywords": [
"vue",
"vuejs",
"plugin"
],
"license": "MIT",
"main": "dist/vue-auth-component.common.js",
"unpkg": "dist/vue-auth-component.browser.js",
"module": "index.js",
"scripts": {
"dev": "cross-env NODE_ENV=development webpack --config config/webpack.config.dev.js --progress --watch",
"build": "npm run build:browser && npm run build:common",
"build:browser": "cross-env NODE_ENV=production webpack --config config/webpack.config.browser.js --progress --hide-modules",
"build:common": "cross-env NODE_ENV=production webpack --config config/webpack.config.common.js --progress --hide-modules",
"lint": "standard",
"prepublish": "npm run build"
},
"standard": {
"ignore": [
"/dist/",
"/config",
"index.js"
]
},
"devDependencies": {
"babel-core": "^6.0.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.14.0",
"babel-preset-stage-0": "^6.16.0",
"cross-env": "^5.0.1",
"css-loader": "^0.28.4",
"eslint": "^4.1.1",
"eslint-config-standard": "^10.2.1",
"eslint-loader": "^1.6.1",
"eslint-plugin-html": "^3.0.0",
"eslint-plugin-import": "^2.6.1",
"eslint-plugin-node": "^5.1.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^3.0.1",
"extract-text-webpack-plugin": "^2.0.0-beta.4",
"less": "^2.7.1",
"less-loader": "^4.0.4",
"svg-inline-loader": "^0.7.1",
"vue": "^2.3.4",
"vue-loader": "^13.0.0",
"vue-template-compiler": "^2.1.6",
"webpack": "^3.0.0",
"webpack-merge": "^4.1.0"
}
}