-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.25 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
{
"name": "intl-utils",
"version": "2.0.0",
"description": "Utilities for internationalization",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint --ignore-path .eslintignore --ext .js,.ts .",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\"",
"build": "tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ignaciolarranaga/intl-utils.git"
},
"keywords": [
"i18n",
"internationalization",
"utilities"
],
"files": [
"package.json",
"dist/index.js",
"dist/index.d.ts"
],
"publishConfig": {
"directory": "dist"
},
"author": "Ignacio Larrañaga <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ignaciolarranaga/intl-utils/issues"
},
"homepage": "https://github.com/ignaciolarranaga/intl-utils#readme",
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"jest": "^29.5.0",
"prettier": "^2.8.7",
"ts-jest": "^29.0.5",
"typescript": "^5.0.2"
}
}