-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.32 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
{
"name": "i18n-collector",
"version": "1.1.1",
"description": "A tool for bundling localization files",
"main": "./lib/index.js",
"module": "./lib/index.esm.js",
"bin": "./lib/cli.js",
"types": "./lib/index.d.ts",
"keywords": [
"l10n",
"i18n",
"i18next",
"internationalization",
"translation",
"localization",
"globalization"
],
"homepage": "https://github.com/gmaxlev/i18n-collector",
"repository": {
"type": "git",
"url": "https://github.com/gmaxlev/i18n-collector.git"
},
"bugs": "https://github.com/gmaxlev/i18n-collector/issues",
"author": "Maksym Levytskyi https://github.com/gmaxlev",
"license": "MIT",
"scripts": {
"test": "npm run lint && jest . --silent",
"test:watch": "jest . --watch --silent",
"dev": "nodemon --watch './**/*.ts' --exec 'node --experimental-specifier-resolution=node --loader ts-node/esm' src/index.ts",
"build:dts": "tsc --declaration --emitDeclarationOnly -p . --outDir dts",
"build": "rm -rf lib && rm -rf dts && npm run build:dts && rollup -c rollup.config.cjs --bundleConfigAsCjs && rm -rf dts",
"lint": "eslint .",
"prettier": "npx prettier --check src",
"prepare": "husky install"
},
"lint-staged": {
"*.{ts,js}": [
"eslint --fix",
"prettier --write",
"npm run test"
],
"*.md": [
"prettier --write"
]
},
"files": [
"lib"
],
"devDependencies": {
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@types/jest": "^29.4.0",
"@types/node": "^18.14.0",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.3",
"jest": "^29.4.3",
"lint-staged": "^13.1.2",
"memfs": "^3.4.13",
"nodemon": "^2.0.20",
"prettier": "2.8.4",
"rollup": "^3.18.0",
"rollup-plugin-dts": "^5.2.0",
"rollup-plugin-filesize": "^9.1.2",
"rollup-plugin-typescript2": "^0.34.1",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^10.0.0",
"filesize": "^10.0.6",
"tsguarder": "^1.0.1"
}
}