forked from Polyconseil/easygettext
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.2 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
{
"name": "easygettext",
"version": "2.12.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": {
"codecov": "^3.6.5",
"eslint": "^5.16.0",
"jest": "^24.9.0"
},
"engines": {
"node": ">=8"
},
"bin": {
"gettext-compile": "./src/compile-cli.js",
"gettext-extract": "./src/extract-cli.js"
},
"dependencies": {
"@vue/component-compiler-utils": "^2.6.0",
"acorn": "^6.4.1",
"acorn-stage3": "^2.0.0",
"acorn-walk": "^6.2.0",
"buntis": "0.2.1",
"cheerio": "^1.0.0-rc.3",
"estree-walker": "^2.0.1",
"flow-remove-types": "^1.2.3",
"minimist": "^1.2.5",
"pofile": "^1.1.0",
"pug": "^2.0.4",
"vue-template-compiler": "^2.6.10"
},
"files": [
"src"
],
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
}
}