forked from i18next/i18next-scanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.31 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
89
90
91
{
"name": "i18next-scanner",
"version": "2.10.3",
"description": "Scan your code, extract translation keys/values, and merge them into i18n resource files.",
"homepage": "https://github.com/i18next/i18next-scanner",
"author": "Cheton Wu <cheton@gmail.com>",
"contributors": [
{
"name": "Cheton Wu",
"email": "cheton@gmail.com",
"url": "https://github.com/cheton"
}
],
"bin": {
"i18next-scanner": "./bin/cli.js"
},
"main": "lib/index.js",
"scripts": {
"prepublish": "npm run eslint && npm run build && npm test",
"build": "babel ./src --out-dir ./lib",
"eslint": "eslint ./src",
"coveralls": "tap test/*.js --coverage --coverage-report=text-lcov --nyc-arg=--require --nyc-arg=babel-register | coveralls",
"test": "tap test/*.js --no-esm --no-timeout --node-arg=--require --node-arg=@babel/register"
},
"repository": {
"type": "git",
"url": "git@github.com:i18next/i18next-scanner.git"
},
"license": "MIT",
"engines": {
"node": ">=6"
},
"keywords": [
"i18n",
"i18next",
"gruntplugin",
"gulpplugin",
"gettext",
"hash",
"sha1",
"crc32",
"md5"
],
"files": [
"bin",
"lib",
"tasks"
],
"dependencies": {
"acorn": "^6.0.0",
"acorn-dynamic-import": "^4.0.0",
"acorn-jsx": "^5.0.1",
"acorn-stage3": "^2.0.0",
"acorn-walk": "^6.0.0",
"chalk": "^2.4.1",
"clone-deep": "^4.0.0",
"commander": "^3.0.1",
"deepmerge": "^4.0.0",
"ensure-array": "^1.0.0",
"eol": "^0.9.1",
"esprima": "^4.0.0",
"gulp-sort": "^2.0.0",
"i18next": "*",
"lodash": "^4.0.0",
"parse5": "^5.0.0",
"sortobject": "^1.1.1",
"through2": "^3.0.1",
"vinyl": "^2.2.0",
"vinyl-fs": "^3.0.1"
},
"devDependencies": {
"@babel/cli": "~7.6.0",
"@babel/core": "~7.6.0",
"@babel/preset-env": "~7.6.0",
"@babel/register": "~7.6.0",
"@trendmicro/babel-config": "~1.0.0-alpha",
"babel-eslint": "~10.0.3",
"coveralls": "^3.0.2",
"eslint": "^6.4.0",
"eslint-config-trendmicro": "^1.4.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"gulp": "^4.0.2",
"gulp-tap": "^2.0.0",
"gulp-util": "^3.0.8",
"sha1": "^1.1.1",
"tap": "^14.6.4",
"text-table": "^0.2.0"
}
}