-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.32 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
{
"name": "@freave/make-pot",
"version": "0.0.16",
"description": "Scans files in a given directory for translatable strings. Generates a POT file.",
"main": "dist/src/index.js",
"files": [
"dist"
],
"bin": {
"make-pot": "dist/src/index.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest --silent --coverage",
"pot": "make-pot --source test/test-files --destination test --domain domain --headers.Language-Team Freave --headers.Project-Id-Version 1.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/freave/make-pot.git"
},
"keywords": [
"pot",
"wordpress",
"php",
"blade"
],
"author": "Mike van Egmond <[email protected]> (https://egmond.dev)",
"contributors": [
"Mike van Egmond <[email protected]> (https://egmond.dev)",
"Freave B.V. <[email protected]> (https://www.freave.com)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/freave/make-pot/issues"
},
"homepage": "https://github.com/freave/make-pot#readme",
"devDependencies": {
"@types/jest": "^28.1.8",
"@types/node": "^18.7.2",
"@types/yargs": "^17.0.11",
"jest": "^28.1.3",
"ts-jest": "^28.0.8",
"typescript": "^4.7.4"
},
"dependencies": {
"ansi-colors": "^4.1.3",
"yargs": "^17.5.1"
}
}