-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.27 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
{
"name": "vue-js-modal",
"description": "Modal Component for Vue.js",
"version": "1.3.34",
"author": "euvl <[email protected]>",
"main": "dist/index.js",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "https://github.com/euvl/vue-js-modal.git"
},
"types": "types/index.d.ts",
"keywords": [
"front-end",
"web",
"vue",
"vuejs",
"vue-js",
"dialog",
"alert",
"modal",
"vue-js-modal",
"vue-modal"
],
"bugs": {
"url": "https://github.com/euvl/vue-js-modal/issues"
},
"scripts": {
"build:client": "webpack --config ./build/webpack.client.config.js --progress --hide-modules",
"build:ssr": "webpack --config ./build/webpack.ssr.config.js --progress --hide-modules",
"build:ssr-no-css": "webpack --config ./build/webpack.ssr-no-css.config.js --progress --hide-modules",
"test": "jest",
"build": "npm run build:client && npm run build:ssr && npm run build:ssr-no-css",
"watch": "webpack --config ./build/webpack.client.config.js --progress --hide-modules --watch",
"test:types": "tsc -p types/test"
},
"license": "MIT",
"peerDependencies": {
"vue": "^2.2.6"
},
"browserslist": "> 0.25%, not dead",
"dependencies": {}
}