-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 2.05 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
{
"name": "vue-intl-numberformat",
"description": "Tiny reusable Vue wrapper for Intl NumberFormat",
"version": "1.0.0",
"author": {
"name": "Vinayak Kulkarni",
"email": "vinayak.kulkarni@live.com",
"url": "https://vinayak.site"
},
"private": false,
"main": "dist/vue-intl-numberformat.min.js",
"module": "dist/vue-intl-numberformat.esm.js",
"files": [
"dist/*"
],
"keywords": [
"vuejs",
"vue2",
"vuejs2",
"vue2",
"NumberFormat",
"UI",
"UX",
"vue-intl-numberformat"
],
"repository": {
"type": "git",
"url": "git+https://github.com/vinayakkulkarni/vue-intl-numberformat.git"
},
"scripts": {
"test": "npm run bundle && karma start karma.conf.js",
"test-watch": "karma start karma.conf.js --no-single-run",
"build": "npm run bundle && npm run bundle:min",
"bundle": "rollup -c build/rollup.conf.js",
"bundle:min": "rollup -c build/rollup.min.conf.js"
},
"devDependencies": {
"aliasify": "^2.1.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"babelify": "^8.0.0",
"browserify": "^16.2.2",
"eslint": "^4.9.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-vue": "^4.7.0",
"jasmine-core": "^3.1.0",
"karma": "^2.0.4",
"karma-browserify": "^5.3.0",
"karma-jasmine": "^1.1.2",
"karma-phantomjs-launcher": "^1.0.4",
"karma-spec-reporter": "^0.0.32",
"phantomjs-prebuilt": "^2.1.16",
"rollup": "^0.59.4",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-uglify": "^4.0.0",
"rollup-plugin-vue": "^4.3.1",
"vue": "^2.5.16",
"vue-template-compiler": "^2.5.16",
"watchify": "^3.11.0"
},
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/vinayakkulkarni/vue-intl-numberformat/issues"
},
"homepage": "https://github.com/vinayakkulkarni/vue-intl-numberformat#readme"
}