forked from iamstevendao/vue-tel-input
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
45 lines (45 loc) · 1.47 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-tel-input",
"version": "2.0.8",
"description": "International Telephone Input with Vue",
"author": "Steven Dao <[email protected]>",
"main": "dist/vue-tel-input.js",
"license": "MIT",
"homepage": "https://educationlink.github.io/vue-tel-input/",
"repository": {
"type": "git",
"url": "https://github.com/EducationLink/vue-tel-input.git"
},
"scripts": {
"dist": "poi build ./src/vue-tel-input.js --format umd --module-name VueTelInput --filename.js vue-tel-input.js --filename.css vue-tel-input.css --no-sourceMap --no-html",
"dist:demo": "poi build ./demo/index.js --config ./demo/build.config.js --filename.css vue-tel-input.css --no-sourceMap --dist ./docs",
"start": "yarn dev",
"dev": "poi build ./demo/index.js --config ./demo/build.config.js --filename.css vue-tel-input.css --no-sourceMap --no-minimize --dist ./docs",
"release": "rm -rf dist && yarn dist",
"demo": "yarn dist && yarn dev && yarn demo:open",
"demo:open": "open 'http://localhost:5000/'; serve ./docs/"
},
"files": [
"dist/"
],
"keywords": [
"vue",
"telephone",
"phone",
"vue-tel-input",
"phone input",
"telephone input"
],
"dependencies": {
"get-json": "^1.0.0",
"libphonenumber-js": "^1.4.6"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.3.0",
"eslint-plugin-import": "^2.7.0",
"poi": "^9.4.3",
"serve": "^6.3.1"
}
}