forked from i18next/i18next-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.22 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
{
"name": "@everfi/i18next-parser",
"description": "Command Line tool for i18next",
"version": "5.4.4",
"license": "MIT",
"author": "Karel Ledru",
"main": "dist/index.js",
"bin": {
"i18next": "./bin/cli.js"
},
"engines": {
"node": ">=12",
"npm": ">=6",
"yarn": ">=1"
},
"scripts": {
"coverage": "nyc --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": "~8.3.0",
"concat-stream": "~2.0.0",
"eol": "^0.9.1",
"fs-extra": "^10.0.0",
"gulp-sort": "^2.0.0",
"i18next": "^23.7.11",
"js-yaml": "4.1.0",
"rsvp": "^4.8.2",
"sort-keys": "^4.2.0",
"through2": "~4.0.2",
"typescript": "^4.2.4",
"vinyl": "~2.2.1",
"vinyl-fs": "^3.0.2"
},
"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",
"chai": "^4.1.2",
"execa": "^5.1.1",
"gulp": "^4.0.2",
"husky": ">=7.0.2",
"lint-staged": ">=11.1.2",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"p-event": "^4.2.0",
"prettier": "2.4.1",
"sinon": "^18.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/EverFi/i18next-parser"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"files": [
"bin/",
"dist/",
"i18next-parser.config.js"
],
"keywords": [
"gulpplugin",
"i18next",
"parser",
"commandline"
],
"resolutions": {
"ansi-regex": "^5.0.1",
"braces": "^3.0.3",
"glob-parent": "^5.1.2",
"micromatch": "^4.0.6"
}
}