-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.3 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
{
"name": "@code-ninja/i18n-lang-generator",
"version": "1.0.3",
"description": "Generate translation files for vue-i18n projects",
"main": "i18n-lang-generator.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --ext .js,.json .",
"lint:fix": "eslint --fix --ext .js,.json ."
},
"bin": {
"i18n-lang-generator": "i18n-lang-generator.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/code-ninja/i18n-lang-generator.git"
},
"keywords": [
"i18n",
"vue",
"translation",
"vue-18n"
],
"author": "Paulo Marinas",
"license": "MIT",
"bugs": {
"url": "https://github.com/code-ninja/i18n-lang-generator/issues"
},
"homepage": "https://github.com/code-ninja/i18n-lang-generator#readme",
"dependencies": {
"deep-sort-object": "^1.0.2",
"glob": "^7.1.4",
"lodash": "^4.17.15",
"minimist": "^1.2.0"
},
"devDependencies": {
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.3.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-json": "^1.4.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"prettier": "^1.18.2"
}
}