-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
50 lines (50 loc) · 1.21 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
{
"name": "nolybab-js",
"version": "1.0.5",
"description": "CLI based tool for converting i18n to csv and csv to i18n files",
"main": "./lib/index.js",
"types": "./lib/types.d.ts",
"scripts": {
"test": "npx jest",
"build": "tsc -p .",
"prepublishOnly": "npm run build",
"dev": "ts-node src/index.ts"
},
"keywords": [
"nolybab",
"i18n",
"csv",
"i18n-to-csv",
"csv-to-i18n"
],
"author": "[email protected]",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.2",
"yargs": "^17.3.1"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^17.0.8",
"@types/yargs": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"eslint": "^8.28.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"jest": "^27.4.7",
"ts-jest": "^27.1.3",
"ts-node": "^10.7.0",
"typescript": "^4.5.4"
},
"bin": {
"nolybab": "./lib/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fima-taf/nolybab-js.git"
},
"bugs": {
"url": "https://github.com/fima-taf/nolybab-js/issues"
},
"homepage": "https://github.com/fima-taf/nolybab-js#readme"
}