forked from i18next/i18next-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.24 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
{
"name": "i18next-parser",
"description": "Command Line tool for i18next",
"version": "6.5.0",
"type": "module",
"license": "MIT",
"author": "Karel Ledru",
"exports": "./dist/index.js",
"bin": {
"i18next": "./bin/cli.js"
},
"engines": {
"node": "^14.13.1 || >=16.0.0 || >=18.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 -c test/cli/i18next-parser.config.js",
"watch": "babel src -d dist -w",
"prettify": "prettier --write \"{src,test}/**/*.js\"",
"build": "babel src -d dist",
"prepare": "husky install",
"prepublishOnly": "yarn -s prettify && yarn -s build"
},
"dependencies": {
"@babel/runtime": "^7.15.4",
"broccoli-plugin": "^4.0.7",
"cheerio": "^1.0.0-rc.2",
"colors": "1.4.0",
"commander": "~9.3.0",
"concat-stream": "~2.0.0",
"eol": "^0.9.1",
"fs-extra": "^10.0.0",
"gulp-sort": "^2.0.0",
"i18next": "^21.2.0",
"js-yaml": "4.1.0",
"rsvp": "^4.8.2",
"sort-keys": "^5.0.0",
"through2": "~4.0.2",
"typescript": "^4.2.4",
"vinyl": "~2.2.1",
"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": "^7.11.3",
"chai": "^4.1.2",
"execa": "^6.1.0",
"gulp": "^4.0.2",
"husky": ">=7.0.2",
"lint-staged": ">=11.1.2",
"mocha": "^10.0.0",
"p-event": "^5.0.1",
"prettier": "2.6.2",
"sinon": "^14.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/i18next/i18next-parser"
},
"files": [
"bin/",
"dist/",
"i18next-parser.config.js"
],
"keywords": [
"gulpplugin",
"i18next",
"parser",
"commandline"
]
}