forked from phiny1/v-currency-field
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.59 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
{
"name": "v-currency-field",
"version": "1.0.6",
"description": "Vue currency input/directive mask",
"main": "dist/v-currency-field.js",
"scripts": {
"size": "size-limit",
"upgrade:check": "ncu",
"upgrade:apply": "ncu -a",
"dev": "vue build ./src/docs/docs.vue --config ./src/docs/build.config.js --host 0.0.0.0",
"build": "vue build ./src/index.js --config ./build.config.js --dist ./dist/ --prod --lib",
"docs:build": "vue build ./src/docs/docs.vue --config ./src/docs/build.config.js --dist ./docs/ --prod",
"docs:serve": "open http://localhost:5000/docs/ && serve ./",
"compile": "npm run build -- --disable-compress",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/phiny1/v-currency-field.git"
},
"keywords": [
"vue",
"input",
"mask",
"directive",
"currency",
"money"
],
"files": [
"dist/"
],
"size-limit": [
{
"path": "dist/v-currency-field.js",
"limit": "1.6 KB"
}
],
"author": "Marcos Neves <[email protected]> (https://vuejs-tips.github.io/) with adpations for vuetify by Philipe Augusto <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-jest": "^21.2.0",
"jest": "^21.2.1",
"npm-check-updates": "^2.13.0",
"size-limit": "^0.11.6",
"vue-cli": "2.8.2",
"vuetify": "^0.16.7"
},
"dependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0"
}
}