-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
59 lines (59 loc) · 1.59 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
{
"name": "babel-plugin-ttag",
"version": "1.8.16",
"description": "",
"main": "dist/plugin.js",
"keywords": [
"gettext",
"translations",
"babel-plugin",
"i18n"
],
"scripts": {
"test": "make test",
"lint": "eslint ./src ./tests",
"fix": "eslint --fix ./src ./tests",
"build": "babel src --out-dir dist",
"preversion": "npm run lint && npm run build && make test",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ttag-org/babel-plugin-ttag.git"
},
"author": "alexander",
"license": "ISC",
"bugs": {
"url": "https://github.com/ttag-org/babel-plugin-ttag/issues"
},
"homepage": "https://github.com/ttag-org/babel-plugin-ttag#readme",
"dependencies": {
"@babel/generator": "^7.12.5",
"@babel/template": "^7.10.4",
"@babel/types": "^7.12.6",
"ajv": "6.12.3",
"babel-plugin-macros": "^2.8.0",
"dedent": "1.5.1",
"gettext-parser": "6.0.0",
"mkdirp": "^1.0.4",
"plural-forms": "^0.5.3"
},
"devDependencies": {
"@babel/cli": "7.22.6",
"@babel/core": "7.22.8",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "7.22.7",
"@babel/preset-react": "^7.12.5",
"@babel/register": "7.22.5",
"babel-eslint": "^10.1.0",
"chai": "3.5.0",
"eslint": "^7.2.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.0.0",
"istanbul": "1.1.0-alpha.1",
"mocha": "^7.2.0"
}
}