-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
107 lines (107 loc) · 3.35 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
101
102
103
104
105
106
107
{
"name": "@intlify/vue-i18n-loader",
"description": "webpack loader for Vue I18n",
"version": "1.1.0",
"author": {
"name": "kazuya kawaguchi",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/intlify/vue-i18n-loader/issues"
},
"changelog": {
"labels": {
"Type: Feature": ":star: Features",
"Type: Bug": ":bug: Bug Fixes",
"Type: Security": ":lock: Security Fixes",
"Type: Performance": ":chart_with_upwards_trend: Performance Fixes",
"Type: Improvement": ":zap: Improvement Features",
"Type: Breaking": ":boom: Breaking Change",
"Type: Deprecated": ":warning: Deprecated Features",
"Type: I18n": ":globe_with_meridians: Internationalization",
"Type: A11y": ":wheelchair: Accessibility",
"Type: Documentation": ":pencil: Documentation"
}
},
"dependencies": {
"@intlify/shared": "^9.0.0",
"js-yaml": "^3.13.1",
"json5": "^2.1.1"
},
"devDependencies": {
"@types/jest": "^26.0.16",
"@types/js-yaml": "^3.12.1",
"@types/jsdom": "^16.2.5",
"@types/json5": "^0.0.30",
"@types/memory-fs": "^0.3.2",
"@types/node": "^14.14.10",
"@types/webpack": "^4.41.26",
"@types/webpack-merge": "^4.1.5",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"babel-loader": "^8.1.0",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue-libs": "^4.0.0",
"jest": "^26.6.3",
"jest-puppeteer": "^4.4.0",
"jest-watch-typeahead": "^0.6.0",
"jsdom": "^16.4.0",
"lerna-changelog": "^1.0.1",
"memory-fs": "^0.5.0",
"opener": "^1.5.2",
"prettier": "^2.0.4",
"puppeteer": "^2.1.1",
"shipjs": "^0.26.0",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3",
"typescript-eslint-language-service": "^4.1.3",
"vue": "^2.6.11",
"vue-i18n": "^8.23.0",
"vue-loader": "^15.9.6",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.2.2"
},
"engines": {
"node": ">= 10"
},
"files": [
"lib"
],
"homepage": "https://github.com/intlify/vue-i18n-loader#readme",
"keywords": [
"i18n",
"loader",
"vue",
"webpack"
],
"license": "MIT",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/intlify/vue-i18n-loader.git"
},
"scripts": {
"build": "tsc -p .",
"build:watch": "tsc -p . --watch",
"clean": "rm -rf ./coverage && rm -rf ./lib/*.js*",
"coverage": "opener coverage/lcov-report/index.html",
"example": "yarn build && webpack-dev-server --config example/webpack.config.js --inline --hot",
"lint": "eslint ./src ./test --ext .ts",
"lint:fix": "yarn lint --fix",
"release:prepare": "shipjs prepare",
"release:trigger": "shipjs trigger",
"fix": "yarn format:fix && yarn lint:fix",
"format": "prettier --config .prettierrc --ignore-path .prettierignore '**/*.{js,json,html}'",
"format:fix": "yarn format --write",
"test": "yarn lint && yarn test:cover && yarn test:e2e",
"test:cover": "yarn test:unit --coverage",
"test:e2e": "yarn build && jest --runInBand --config ./jest.e2e.config.js",
"test:unit": "jest --env node",
"test:watch": "jest --env node --watch"
}
}