-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2 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
{
"name": "li18nt",
"version": "5.0.0",
"description": "Locales linter, formatter, sorter and prettifier",
"main": "./lib/index.min.mjs",
"types": "./lib/src/lib/index.d.ts",
"author": "Simon Reinisch <[email protected]>",
"type": "module",
"license": "MIT",
"bin": {
"lint-i18n": "bin/cli.js",
"li18nt": "bin/cli.js"
},
"files": [
"lib"
],
"scripts": {
"build": "cross-env NODE_ENV=production rollup -c rollup.config.js",
"build:watch": "cross-env NODE_ENV=development rollup -c rollup.config.js --watch",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint './{src,test}/**/*.ts'",
"lint:fix": "npm run lint -- --fix",
"install:local": "npm run build && npm install -g .",
"test:ci": "npm run test && npm run lint:fix && npm run build",
"prepublishOnly": "npm run test:ci"
},
"keywords": [
"lint",
"linter",
"i18n",
"internationalization",
"json",
"locales",
"cli",
"cli-tool",
"formatter",
"prettier"
],
"homepage": "https://github.com/Simonwep/li18nt#readme",
"repository": {
"type": "git",
"url": "https://github.com/Simonwep/li18nt.git"
},
"bugs": {
"url": "https://github.com/Simonwep/li18nt/issues"
},
"devDependencies": {
"@rollup/plugin-replace": "^4.0.0",
"@rollup/plugin-typescript": "^8.4.0",
"@types/glob": "^8.0.0",
"@types/node": "^18.7.14",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"cross-env": "^7.0.3",
"eslint": "^8.23.0",
"rollup": "^2.79.0",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.8.2",
"vite-tsconfig-paths": "^3.5.0",
"vitest": "^0.22.1"
},
"dependencies": {
"chalk": "^5.0.1",
"commander": "^9.4.0",
"glob": "^8.0.3"
}
}