-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
100 lines (100 loc) · 2.78 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "vue-autonumeric",
"version": "1.2.6",
"description": "An AutoNumeric wrapper for Vue.js",
"author": "Alexandre Bonneau <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server --config ./build/webpack.dev.js --open --inline --hot",
"build:debug": "cross-env NODE_ENV=debug webpack --config build/webpack.dist.js",
"build:release": "cross-env NODE_ENV=production webpack --config build/webpack.dist.js",
"build:examples": "webpack --config build/webpack.examples.js",
"build": "npm run build:debug && npm run build:release && npm run build:examples",
"clean": "rimraf ./examples/js/examples.bundle.js ./dist",
"lint": "eslint --ext .js,.vue src examples-src build",
"lintfix": "eslint --fix --ext .js,.vue src examples-src build"
},
"main": "dist/vue-autonumeric.min.js",
"typings": "types/index.d.ts",
"readmeFilename": "README.md",
"keywords": [
"autonumeric",
"currency",
"money",
"monetary",
"Euro",
"Dollar",
"Pound",
"number",
"numeric",
"format",
"form",
"input",
"mask",
"as-you-type",
"live",
"vue",
"vue.js",
"vuejs",
"ui",
"components"
],
"dependencies": {
"autonumeric": "^4.2.13"
},
"devDependencies": {
"autoprefixer": "^6.7.7",
"babel-core": "^6.0.0",
"babel-eslint": "^8.0.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.4.0",
"babel-preset-es2015": "^6.0.0",
"babel-preset-stage-2": "^6.24.1",
"cross-env": "^3.0.0",
"css-loader": "^0.25.0",
"deep-assign": "^2.0.0",
"eslint": "^4.7.1",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-html": "^3.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"extract-text-webpack-plugin": "^3.0.0",
"node-sass": "^4.5.3",
"rimraf": "^2.6.1",
"sass-loader": "^6.0.6",
"vue": "^2.2.6",
"vue-loader": "^11.3.3",
"vue-style-loader": "^3.0.0",
"vue-template-compiler": "^2.2.6",
"webpack": "^3.5.6",
"webpack-bundle-analyzer": "^2.2.1",
"webpack-dev-server": "^2.7.1"
},
"homepage": "https://github.com/autoNumeric/vue-autoNumeric/",
"repository": {
"type": "git",
"url": "git+https://github.com/autoNumeric/vue-autoNumeric.git"
},
"bugs": {
"url": "https://github.com/autoNumeric/vue-autoNumeric/issues"
},
"autoupdate": {
"source": "git",
"target": "git://github.com/autoNumeric/vue-autoNumeric.git",
"basePath": "",
"files": [
"src/Autonumeric.vue"
]
},
"engines": {
"node": ">= 4.0.0",
"npm": ">= 3.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}