-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
57 lines (57 loc) · 1.24 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": "easygettext",
"version": "2.16.0",
"description": "Simple tools to extract gettext strings",
"main": "src/extract-cli.js",
"repository": {
"type": "git",
"url": "https://github.com/polyconseil/easygettext"
},
"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"
},
"optionalDependencies": {
"@vue/compiler-sfc": "^3.0.0",
"pug": "^3.0.2"
},
"files": [
"src"
],
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
}
}