forked from i18next/i18next-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.57 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
{
"name": "i18next-parser",
"description": "Command Line tool for i18next",
"version": "8.7.0",
"type": "module",
"license": "MIT",
"author": "Karel Ledru",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"i18next": "./bin/cli.js"
},
"engines": {
"node": ">=16.0.0 || >=18.0.0 || >=20.0.0",
"npm": ">=6",
"yarn": ">=1"
},
"scripts": {
"coverage": "c8 --all --include='src/**/*[.js|.jsx|.ts|.tsx]' --reporter=lcov --reporter=text yarn test",
"test": "mocha -r @babel/register -r @babel/polyfill --recursive test/*.test.js test/**/*.test.js",
"test:cli": "yarn -s build && ./bin/cli.js '**/*.html' -o 'test/manual/$LOCALE/$NAMESPACE.json' && ./bin/cli.js -c test/cli/i18next-parser.config.js && ./bin/cli.js -c test/cli/i18next-parser.config.mjs && ./bin/cli.js -c test/cli/i18next-parser.config.ts && ./bin/cli.js -c test/cli/i18next-parser.config.yaml",
"test:watch": "mocha -r @babel/register -r @babel/polyfill --watch --parallel --recursive",
"watch": "babel src -d dist -w",
"prettify": "prettier --write \"{src,test}/**/*.js\"",
"build": "babel src -d dist && cp index.d.ts dist",
"prepare": "husky install",
"prepublishOnly": "yarn -s prettify && yarn -s build"
},
"dependencies": {
"broccoli-plugin": "^4.0.7",
"cheerio": "^1.0.0-rc.2",
"colors": "1.4.0",
"commander": "~11.0.0",
"eol": "^0.9.1",
"esbuild": "^0.19.0",
"fs-extra": "^11.1.0",
"gulp-sort": "^2.0.0",
"i18next": "^22.0.4",
"js-yaml": "4.1.0",
"lilconfig": "^2.0.6",
"rsvp": "^4.8.2",
"sort-keys": "^5.0.0",
"typescript": "^5.0.4",
"vinyl": "~3.0.0",
"vinyl-fs": "^3.0.2",
"vue-template-compiler": "^2.6.11"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.14.2",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"broccoli": "^3.5.2",
"broccoli-cli": "^1.0.0",
"broccoli-funnel": "^3.0.8",
"c8": "^8.0.0",
"chai": "^4.1.2",
"execa": "^7.1.1",
"gulp": "^4.0.2",
"husky": ">=7.0.2",
"lint-staged": ">=11.1.2",
"mocha": "^10.0.0",
"p-event": "^6.0.0",
"prettier": "3.0.1",
"sinon": "^15.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/i18next/i18next-parser"
},
"files": [
"bin/",
"dist/",
"i18next-parser.config.js"
],
"keywords": [
"gulpplugin",
"i18next",
"parser",
"commandline"
]
}