-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 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
{
"name": "@kumojin/vue-money-amount",
"description": "Used to display a localized money amount in the user's preferred locale, or a custom locale",
"author": {
"name": "Solutions Kumojin Inc.",
"email": "contact@kumojin.com"
},
"bugs": {
"url": "https://github.com/kumojin/vue-money-amount/issues"
},
"homepage": "https://github.com/kumojin/vue-money-amount#readme",
"license": "MIT",
"version": "1.0.0",
"private": false,
"scripts": {
"build": "vue-cli-service build --target lib --name vue-money-amount --inline-vue src/MoneyAmount.vue",
"test:unit": "jest",
"test:unit:watch": "jest --watch",
"lint": "vue-cli-service lint --fix",
"storybook": "start-storybook -p 6006",
"build:storybook": "build-storybook -c .storybook -o dist/storybook"
},
"dependencies": {
"core-js": "3.29.0",
"get-user-locale": "2.2.1",
"iso4217": "0.2.0",
"vue": "2.x"
},
"devDependencies": {
"@babel/core": "7.21.0",
"@babel/preset-env": "7.20.2",
"@storybook/addon-actions": "6.5.16",
"@storybook/addon-essentials": "6.5.16",
"@storybook/addon-links": "6.5.16",
"@storybook/builder-webpack5": "6.5.16",
"@storybook/manager-webpack5": "6.5.16",
"@storybook/vue": "6.5.16",
"@types/jest": "29.4.0",
"@typescript-eslint/eslint-plugin": "5.54.1",
"@typescript-eslint/parser": "5.54.1",
"@vue/cli-plugin-babel": "5.0.8",
"@vue/cli-plugin-eslint": "5.0.8",
"@vue/cli-plugin-typescript": "5.0.8",
"@vue/cli-plugin-unit-jest": "5.0.8",
"@vue/cli-service": "5.0.8",
"@vue/eslint-config-airbnb": "7.0.0",
"@vue/eslint-config-prettier": "7.1.0",
"@vue/eslint-config-typescript": "11.0.2",
"@vue/test-utils": "1.3.4",
"@vue/vue2-jest": "29.2.3",
"awesome-typescript-loader": "5.2.1",
"babel-jest": "29.5.0",
"babel-loader": "9.1.2",
"babel-plugin-transform-require-context": "0.1.1",
"css-loader": "6.7.3",
"eslint": "8.36.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-storybook": "0.6.11",
"eslint-plugin-vue": "9.9.0",
"jest": "29.5.0",
"jest-config": "29.5.0",
"jest-environment-jsdom": "29.5.0",
"jest-serializer-vue": "2.0.2",
"prettier": "2.8.4",
"sass": "1.59.2",
"sass-loader": "13.2.0",
"storybook": "6.5.16",
"style-loader": "3.3.1",
"ts-jest": "29.0.5",
"tsconfig-paths-webpack-plugin": "4.0.1",
"typescript": "4.9.5",
"vue-loader": "15.10.1",
"vue-template-compiler": "2.x"
},
"main": "dist/vue-money-amount.common.js",
"repository": {
"type": "git",
"url": "git+https://github.com/kumojin/vue-money-amount.git"
},
"sideEffects": false,
"files": [
"dist"
]
}