-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.46 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
{
"name": "next-translate-scanner",
"version": "0.2.1",
"description": "Scan next-translate code for translations and update json files.",
"keywords": [
"next-translate",
"parser",
"scanner",
"cli",
"commandline"
],
"main": "lib/index.js",
"bin": {
"next-translate-scanner": "./dist/cli.js"
},
"engines": {
"node": ">=12"
},
"files": [
"dist"
],
"scripts": {
"run": "ts-node ./src/cli.ts --config _test-files/next-translate-scanner.config.js",
"run-help": "ts-node ./src/cli.ts --help",
"run-builded": "node ./dist/cli.js --config _test-files/next-translate-scanner.config.js",
"build": "tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wuifdesign/next-translate-scanner.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/wuifdesign/next-translate-scanner/issues"
},
"homepage": "https://github.com/wuifdesign/next-translate-scanner#readme",
"dependencies": {
"chalk": "^4.1.2",
"commander": "^9.0.0",
"glob": "^7.2.0",
"rimraf": "^3.0.2"
},
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/glob": "^7.2.0",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.18",
"@types/pseudo-localization": "^2.1.1",
"@types/rimraf": "^3.0.2",
"@types/vinyl": "^2.0.6",
"jest": "^27.5.1",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
}
}