-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
67 lines (67 loc) · 1.87 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
{
"name": "vue-promise-btn",
"version": "2.1.0",
"description": "Vue.js plugin that handles buttons asynchronous lock and show loading state indicator",
"scripts": {
"start": "npm run dev",
"dev": "cross-env NODE_ENV=development rollup -cw",
"clean": "rimraf dist/",
"compile": "cross-env NODE_ENV=production rollup -c",
"build": "npm run clean && npm run compile"
},
"author": {
"name": "alex.stepchenkov",
"email": "stukak@gmail.com",
"url": "https://github.com/STUkh"
},
"repository": "https://github.com/STUkh/vue-promise-btn",
"homepage": "https://github.com/STUkh/vue-promise-btn",
"module": "dist/vue-promise-btn.js",
"main": "dist/vue-promise-btn.common.js",
"unpkg": "dist/vue-promise-btn.umd.js",
"style": "dist/vue-promise-btn.css",
"typings": "./index.d.ts",
"keywords": [
"vue",
"promise",
"promise-btn",
"vue-promise-btn",
"spinner",
"btn",
"button",
"loader",
"rollup"
],
"files": [
"dist/",
"src/",
"index.d.ts"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/STUkh/vue-promise-btn/issues"
},
"dependencies": {},
"devDependencies": {
"cross-env": "^5.2.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-html": "^4.0.6",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"rimraf": "^2.6.3",
"rollup": "^1.1.2",
"rollup-plugin-buble": "^0.19.6",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-css-only": "^1.0.0",
"rollup-plugin-eslint": "^5.0.0",
"rollup-plugin-livereload": "^1.0.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-serve": "^1.0.1",
"rollup-plugin-terser": "^4.0.4",
"rollup-plugin-vue": "^4.7.1",
"vue": "^2.6.3",
"vue-template-compiler": "^2.6.3"
}
}