-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.16 KB
/
Copy pathpackage.json
File metadata and controls
121 lines (121 loc) · 3.16 KB
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "ttag-cli",
"version": "1.12.0",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/ttag-org/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": {
"ttag": "./bin/ttag"
},
"devDependencies": {
"@types/babel__core": "7.1.2",
"@types/babel__generator": "^7.6.2",
"@types/babel__template": "^7.0.3",
"@types/babel__traverse": "^7.0.15",
"@types/chalk": "^2.2.0",
"@types/estree": "0.0.44",
"@types/jest": "^30.0.0",
"@types/koa": "^2.0.49",
"@types/koa-router": "^7.0.42",
"@types/mkdirp": "^0.5.2",
"@types/node": "^20.19.40",
"@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/walk": "^2.3.0",
"@types/yargs": "^17.0.35",
"babel-core": "^7.0.0-bridge.0",
"babel-plugin-react-compiler": "^19.1.0-rc.2",
"husky": "^0.14.3",
"jest": "^30.4.2",
"lint-staged": "^17.0.4",
"prettier": "^1.19.1",
"ts-jest": "^29.4.9",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"dependencies": {
"@babel/core": "^7.29.0",
"@babel/generator": "^7.29.1",
"@babel/plugin-proposal-decorators": "^7.29.0",
"@babel/plugin-proposal-export-default-from": "^7.27.1",
"@babel/preset-env": "^7.29.5",
"@babel/preset-flow": "^7.27.1",
"@babel/preset-react": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@babel/template": "^7.28.6",
"babel-plugin-ttag": "1.8.16",
"chalk": "^2.4.2",
"cross-spawn": "^7.0.6",
"estree-walker": "^2.0.1",
"gettext-parser": "^6.0.0",
"glob": "13.0.0",
"hunspell-spellchecker": "^1.0.2",
"ignore": "^5.1.8",
"is-glob": "^4.0.3",
"koa": "^2.16.4",
"koa-body": "^7.0.1",
"koa-router": "^14.0.0",
"mkdirp": "^0.5.1",
"node-fetch": "^2.7.0",
"open": "^6.4.0",
"ora": "1.3.0",
"plural-forms": "0.5.3",
"readline-sync": "^1.4.7",
"serialize-javascript": "^7.0.5",
"svelte": "^5.55.5",
"tmp": "^0.2.5",
"vue-sfc-parser": "^0.1.2",
"walk": "2.3.9",
"yargs": "^16.2.0"
},
"overrides": {
"@babel/runtime": "^7.29.1",
"ajv": "^6.15.0",
"brace-expansion": "^1.1.13",
"js-yaml": "^3.14.2",
"yaml": "^1.10.3"
},
"jest": {
"snapshotFormat": {
"escapeString": true,
"printBasicPrototype": true
},
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/tests/.*|(\\.|/)(test|spec))\\.(tsx?)$",
"testPathIgnorePatterns": [
"/tests/fixtures.*"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
}
}