-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 884 Bytes
/
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-maskedinput",
"version": "0.1.3",
"description": "Masked input Vue component",
"repository": {
"url": "luyilin/vue-maskedinput",
"type": "git"
},
"main": "dist/vue-maskedinput.common.js",
"files": [
"dist"
],
"scripts": {
"prepublishOnly": "npm test && npm run build",
"test": "test-vue-app",
"build": "bili",
"example": "poi",
"build:example": "poi build"
},
"author": {
"name": "luyilin",
"email": "[email protected]"
},
"license": "MIT",
"poi": {
"entry": "example/index.js",
"dist": "example/dist",
"homepage": "./"
},
"bili": {
"format": [
"cjs",
"umd"
]
},
"devDependencies": {
"bili": "^0.18.2",
"poi": "^9.3.10",
"test-vue-app": "^1.0.0",
"vue-test-utils": "^1.0.0-beta.2"
},
"dependencies": {
"inputmask-core": "^2.2.0"
}
}