forked from lukasgeiter/gettext-extractor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.04 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
{
"name": "gettext-extractor",
"version": "1.0.2",
"description": "Gettext extractor for JavaScript, TypeScript and JSX",
"author": "Lukas Geiter <[email protected]>",
"repository": "lukasgeiter/gettext-extractor",
"bugs": "https://github.com/lukasgeiter/gettext-extractor/issues",
"license": "MIT",
"keywords": [
"gettext",
"extractor",
"typescript",
"po-files",
"i18n",
"l10n",
"translation"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"LICENSE.md",
"README.md"
],
"scripts": {
"test": "jest --config jest.json",
"lint": "tslint src/**/*.ts{,x}",
"build": "tsc"
},
"dependencies": {
"gettext-parser": "^1.2",
"glob": "5 - 7",
"typescript": "^2"
},
"devDependencies": {
"@types/jest": "^19.2.2",
"@types/node": "^7.0.8",
"jest": "^19.0.2",
"ts-jest": "^19.0.1",
"tslint": "^4.5.1"
}
}