forked from i18next/i18next-scanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.54 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
{
"name": "i18next-scanner",
"version": "1.4.1",
"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 <[email protected]>",
"main": "lib/index.js",
"scripts": {
"prepublish": "npm run lint && npm run build && npm test",
"build": "babel ./src --out-dir ./lib",
"test": "./babel-tap --coverage test/*.js",
"lint": "eslint ./src",
"lint:fix": "eslint --fix ./src",
"precommit-check": "npm run lint",
"coveralls": "./babel-tap --coverage --coverage-report=text-lcov test/*.js | node_modules/.bin/coveralls"
},
"pre-commit": [
"precommit-check"
],
"repository": {
"type": "git",
"url": "[email protected]:i18next/i18next-scanner.git"
},
"license": "MIT",
"engines": {
"node": ">=0.10.x"
},
"keywords": [
"i18n",
"i18next",
"gruntplugin",
"gulpplugin",
"gettext",
"hash",
"sha1",
"crc32",
"md5"
],
"dependencies": {
"esprima": "^2.7.2",
"lodash": "^4.13.1",
"through2": "^2.0.1",
"vinyl": "^1.1.1",
"vinyl-fs": "^2.4.3"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.9.1",
"babel-eslint": "^6.0.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"coveralls": "^2.11.9",
"eslint": "^2.12.0",
"gulp": "^3.9.1",
"gulp-tap": "^0.1.3",
"gulp-util": "^3.0.7",
"sha1": "^1.1.1",
"tap": "^5.7.2",
"text-table": "^0.2.0"
}
}