-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.39 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
{
"name": "@getclave/locales",
"description": "Clave locales",
"version": "1.0.0",
"author": "getclave.io",
"dependencies": {
"@trivago/prettier-plugin-sort-imports": "4.2.0",
"@typescript-eslint/eslint-plugin": "7.5.0",
"@typescript-eslint/parser": "7.5.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "4.0.0",
"prettier": "2.8.8",
"typescript": "5.1.6"
},
"devDependencies": {
"@types/node": "16.0.0",
"ts-jest": "29.1.1",
"ts-node": "10.9.1"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.test\\.ts$",
"transform": {
".+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"keywords": [
"clave",
"locales",
"zksync"
],
"license": "MIT",
"main": "src/index.ts",
"maintainers": [
{
"name": "Farhad Asgarov",
"email": "[email protected]"
}
],
"private": false,
"publisher": "getclave.io",
"scripts": {
"build": "rimraf dist && tsc",
"dev": "tsc --watch",
"format": "prettier --write \"./**/*.ts\"",
"lint": "eslint \"./**/*.ts\" --fix",
"lint-check": "eslint \"./**/*.ts\"",
"release": "npm run build && npm publish",
"test": "tsc"
},
"types": "src/index.ts"
}