forked from ttag-org/ttag-cli
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
106 lines (106 loc) · 3 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@wiredcraft/ttag-cli",
"version": "0.0.8",
"description": "Based on ttag-cli#1.7.28",
"main": "index.js",
"repository": "git+https://github.com/wiredcraft/ttag-cli.git",
"author": "",
"license": "MIT",
"scripts": {
"preversion": "npm run build && npm test",
"test": "mkdir -p dist && CI=true jest",
"cli": "ts-node ./src/index.ts",
"build": "tsc",
"pretty": "prettier --write \"./src/**/*.ts\" \"./tests/**/*.ts\"",
"precommit": "lint-staged",
"postinstall": "node ./scripts/install_completion.js",
"readme": "npm run build && node ./scripts/doc.js"
},
"lint-staged": {
"*.{ts,css,tsx}": [
"prettier --write",
"git add"
]
},
"bin": {
"omni-i18n": "./bin/ttag"
},
"devDependencies": {
"@types/babel__core": "7.1.2",
"@types/babel__generator": "^7.0.2",
"@types/babel__template": "^7.0.2",
"@types/babel__traverse": "^7.0.7",
"@types/chalk": "^2.2.0",
"@types/jest": "21.1.6",
"@types/koa": "^2.0.49",
"@types/koa-router": "^7.0.42",
"@types/mkdirp": "^0.5.2",
"@types/node": "^12.12.6",
"@types/node-fetch": "^1.6.7",
"@types/ora": "1.3.1",
"@types/readline-sync": "^1.4.2",
"@types/serialize-javascript": "^1.5.0",
"@types/tmp": "^0.0.33",
"@types/yargs": "8.0.2",
"babel-core": "^7.0.0-bridge.0",
"husky": "^0.14.3",
"jest": "^24.8.0",
"lint-staged": "^5.0.0",
"prettier": "^1.18.2",
"ts-jest": "^24.0.2",
"ts-node": "3.3.0",
"typescript": "^3.7.2"
},
"dependencies": {
"@babel/core": "^7.5.4",
"@babel/generator": "^7.5.0",
"@babel/plugin-proposal-class-properties": "^7.5.0",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-proposal-export-default-from": "^7.5.2",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.5.4",
"@babel/plugin-proposal-optional-chaining": "7.6.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "7.7.0",
"@babel/template": "^7.4.4",
"ansi": "^0.3.1",
"babel-plugin-ttag": "^1.7.24",
"chalk": "^2.4.2",
"cross-spawn": "^5.1.0",
"gettext-parser": "4.0.0-alpha.0",
"hunspell-spellchecker": "^1.0.2",
"koa": "^2.7.0",
"koa-body": "^2.5.0",
"koa-router": "^7.3.0",
"mkdirp": "^0.5.1",
"node-fetch": "^1.7.3",
"open": "^6.4.0",
"ora": "1.3.0",
"plural-forms": "0.3.3",
"readline-sync": "^1.4.7",
"serialize-javascript": "^2.1.2",
"supports-color": "^5.0.1",
"tmp": "0.0.33",
"walk": "2.3.9",
"yargs": "^11.1.1"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/tests/.*|(\\.|/)(test|spec))\\.(tsx?)$",
"testPathIgnorePatterns": [
"/tests/fixtures.*"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
}
}