-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
45 lines (45 loc) · 1.08 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
{
"name": "locale-man",
"version": "0.0.5",
"description": "Interactive translation manager for node",
"main": "index.js",
"scripts": {
"test": "npm run lint && npm run unit",
"unit": "jest",
"unit-watch": "jest --watch --coverage",
"lint": "eslint src"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/liip-amboss/locale-man.git"
},
"keywords": [
"i18n",
"node",
"translation",
"vuex-i18n",
"vue-18n"
],
"author": "liip-amboss",
"license": "MIT",
"bugs": {
"url": "https://github.com/liip-amboss/locale-man/issues"
},
"homepage": "https://github.com/liip-amboss/locale-man#readme",
"dependencies": {
"chalk": "^2.3.0",
"commander": "^2.11.0",
"inquirer": "^4.0.0",
"jsonfile": "^4.0.0",
"lodash.set": "^4.3.2"
},
"devDependencies": {
"eslint": "^4.12.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"jest": "^21.2.1"
}
}