-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.69 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": "@psycle/intl-maintainer",
"version": "0.1.0",
"description": "A CLI utility to maintain your INTL JSON files",
"main": "bin/main.js",
"bin": {
"intl-maintainer": "bin/main.js"
},
"author": "Psycle Research",
"license": "MIT",
"homepage": "https://github.com/PsycleResearch/intl-maintainer",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/PsycleResearch/intl-maintainer.git"
},
"bugs": {
"url": "https://github.com/PsycleResearch/intl-maintainer/issues"
},
"scripts": {
"build": "tsc --build --clean && tsc && chmod +x bin/main.js",
"test": "jest",
"pretty": "prettier --write src/.",
"pretty:check": "prettier --check src/.",
"lint": "eslint --fix --ext .ts,.js,.json src/",
"use": "ts-node src/main.ts",
"release": "yarn build && yarn publish"
},
"dependencies": {
"@formatjs/cli-lib": "^5.1.3",
"commander": "^9.4.1",
"fs-extra": "^11.0.0",
"json-stable-stringify": "^1.0.2"
},
"devDependencies": {
"@jest/globals": "^29.3.1",
"@types/fs-extra": "^9.0.13",
"@types/json-stable-stringify": "^1.0.34",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"jest": "^29.3.1",
"prettier": "2.8.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"tsc": "^2.0.4",
"typescript": "^4.9"
},
"engines": {
"node": ">= 16.5.0"
}
}