forked from i18next/i18next-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.63 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
{
"author": "Karel Ledru",
"description": "Command Line tool for i18next",
"name": "i18next-parser",
"version": "2.1.0",
"license": "MIT",
"main": "dist/index.js",
"bin": {
"i18next": "./bin/cli.js"
},
"scripts": {
"test": "mocha -r babel-register -r babel-polyfill --recursive test/*.test.js test/**/*.test.js",
"watch": "babel src -d dist -w",
"build": "prettier --write --no-semi --single-quote \"{src,test}/**/*.js\" && babel src -d dist"
},
"repository": {
"type": "git",
"url": "https://github.com/i18next/i18next-parser"
},
"dependencies": {
"broccoli-plugin": "^1.3.0",
"cheerio": "^1.0.0-rc.2",
"colors": "~1.2.0-rc0",
"commander": "~2.9.0",
"concat-stream": "~1.6.0",
"eol": "^0.9.1",
"fs-extra": "^6.0.1",
"gulp-sort": "^2.0.0",
"i18next": "^19.0.1",
"rsvp": "^4.8.2",
"through2": "~2.0.3",
"typescript": "^3.6.4",
"vinyl": "~2.0.1",
"vinyl-fs": "^3.0.2",
"vue-template-compiler": "^2.6.11",
"yamljs": "^0.3.0"
},
"optionalDependencies": {},
"engines": {
"node": ">=10",
"npm": ">=6",
"yarn": ">=1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"broccoli": "^1.1.4",
"broccoli-funnel": "^2.0.1",
"chai": "^4.1.2",
"gulp": "^4.0.0",
"mocha": "^5.0.0",
"prettier": "2.0.5",
"sinon": "^6.2.0"
},
"keywords": [
"gulpplugin",
"i18next",
"parser",
"commandline"
]
}