-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
58 lines (58 loc) · 1.55 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
{
"name": "i18n-unused",
"version": "0.17.2",
"description": "The tool for finding, analyzing and removing unused and missed i18n translations in your JavaScript project",
"type": "module",
"source": "src/index.ts",
"bin": "bin/i18n-unused.cjs",
"main": "dist/i18n-unused.cjs",
"module": "dist/i18n-unused.js",
"types": "dist/index.d.ts",
"exports": {
"require": "./dist/i18n-unused.cjs",
"import": "./dist/i18n-unused.js"
},
"files": [
"*"
],
"scripts": {
"test": "jest",
"build": "rm -rf dist && microbundle --target node",
"prepare": "npm run build",
"lint": "eslint ./src --ext .ts",
"lint-fix": "eslint ./src --ext .ts --fix",
"format-code": "prettier --config .prettierrc 'src/**/*.ts' --write"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mxmvshnvsk/i18n-unused.git"
},
"keywords": [
"i18n"
],
"author": "Maxim Vishnevsky",
"license": "MIT",
"bugs": {
"url": "https://github.com/mxmvshnvsk/i18n-unused/issues"
},
"homepage": "https://github.com/mxmvshnvsk/i18n-unused#readme",
"devDependencies": {
"@types/jest": "^26.0.24",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"eslint": "^7.32.0",
"jest": "^27.0.6",
"microbundle": "^0.13.3",
"prettier": "^3.0.0",
"ts-jest": "^27.0.4",
"typescript": "^4.9.5"
},
"dependencies": {
"commander": "^10.0.1",
"esm": "^3.2.25",
"ts-import": "^2.0.40"
}
}