-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.24 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
{
"name": "@marchintosh94/i18n-pro",
"version": "0.1.5",
"description": "Translation library i18n (TS)",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"clean": "rm -rf dist/",
"compile": "tsc -p ./tsconfig.build.json",
"build": "npm run clean && npm run compile",
"test": "jest",
"coverage": "jest --coverage",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "https://github.com/marchintosh94/i18nPro.git"
},
"bugs": {
"url": "https://github.com/marchintosh94/i18nPro/issues"
},
"keywords": [
"js",
"i18n",
"internationalization",
"translation",
"typescript",
"react",
"next",
"vue",
"angular",
"node"
],
"author": "marchintosh94 <marcobaratto@icloud.com> (https://marcobaratto.dev/)",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^20.11.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"json": "^11.0.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"ts-utils": "^6.1.0",
"tsc-alias": "^1.8.7"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"prettier --write"
]
}
}