-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 1.81 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
{
"name": "ya-i18next-webpack-plugin",
"version": "0.5.0",
"description": "",
"main": "index.js",
"typings": "index.d.ts",
"scripts": {
"build": "tsc -p src",
"test": "cross-env TS_NODE_PROJECT=test/tsconfig.json nyc mocha --require ts-node/register \"test/*-test.ts\"",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"prepare": "npm test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Perlmint/ya-i18next-webpack-plugin.git"
},
"keywords": [
"i18next",
"webpack",
"plugin",
"i18n"
],
"author": "Gyusun Yeom <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Perlmint/ya-i18next-webpack-plugin/issues"
},
"homepage": "https://github.com/Perlmint/ya-i18next-webpack-plugin#readme",
"devDependencies": {
"@types/chai": "^4.1.0",
"@types/i18next-fs-backend": "1.0",
"@types/lodash": "^4.14.165",
"@types/mocha": "^5.0.0",
"@types/node": "^14.14.7",
"@types/stream-buffers": "^3.0.2",
"@types/tmp": "0.0.33",
"chai": "^4.1.2",
"cross-env": "^5.1.0",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"source-map-support": "^0.5.19",
"tmp": "0.0.33",
"ts-node": "^7.0.0",
"typescript": "^4",
"webpack": "^5"
},
"dependencies": {
"i18next": "^19",
"i18next-fs-backend": "^1",
"lodash": "^4.17.20",
"source-map": "^0.7.0",
"stream-buffers": "^3.0.1",
"webpack-virtual-modules": "^0.3.2"
},
"peerDependencies": {
"webpack": "^5"
},
"files": [
"config.d.ts",
"index.js",
"index.d.ts"
],
"nyc": {
"extension": [
".ts"
],
"exclude": [
"**/*.d.ts",
"test",
"coverage",
"*.js"
],
"reporter": [
"html",
"text"
],
"all": true
}
}