forked from Polyconseil/easygettext
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.41 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
{
"name": "@hieunhit/easygettext",
"version": "2.17.3",
"description": "Simple tools to extract gettext strings",
"main": "src/extract-cli.js",
"repository": {
"type": "git",
"url": "git+https://github.com/hieunhit/easygettext.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"scripts": {
"coverage": "npx jest && codecov",
"syntax": "eslint src/",
"test": "npx jest"
},
"keywords": [],
"author": "Polyconseil",
"license": "MIT",
"devDependencies": {
"@types/jest": "^26.0.14",
"codecov": "^3.8.0",
"eslint": "^7.10.0",
"jest": "^26.5.2"
},
"engines": {
"node": ">=8"
},
"bin": {
"gettext-compile": "src/compile-cli.js",
"gettext-extract": "src/extract-cli.js"
},
"dependencies": {
"@babel/core": "^7.11.6",
"acorn": "^7.4.0",
"acorn-stage3": "^4.0.0",
"acorn-walk": "^8.0.0",
"buntis": "0.2.1",
"cheerio": "^1.0.0-rc.3",
"estree-walker": "^2.0.1",
"flow-remove-types": "^2.135.0",
"minimist": "^1.2.5",
"pofile": "^1.1.0",
"pug": "^3.0.2"
},
"optionalDependencies": {
"@vue/compiler-sfc": "^3.0.0",
"pug": "^3.0.2"
},
"files": [
"src"
],
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"bugs": {
"url": "https://github.com/hieunhit/easygettext/issues"
},
"homepage": "https://github.com/hieunhit/easygettext#readme"
}