-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.25 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
{
"name": "babel-plugin-react-intl-2-lingui",
"version": "1.0.7",
"main": "build/index.js",
"author": "Hao Tran",
"license": "MIT",
"private": false,
"repository": {
"url": "https://github.com/tmhao2005/babel-plugin-react-intl-2-lingui.git"
},
"keywords": [
"react-intl",
"lingui",
"convert"
],
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@lingui/babel-plugin-extract-messages": "^2.9.1",
"@lingui/macro": "2.9.1",
"@types/babel__core": "^7.1.6",
"@types/jest": "^25.1.3",
"@types/node": "^13.7.7",
"babel-plugin-macros": "^2.4.2",
"jest": "^25.1.0",
"prettier": "^2.0.5",
"ts-jest": "^25.2.1",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^3.8.3"
},
"scripts": {
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "git add -A src",
"postversion": "git push && git push --tags",
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"lint": "tslint '{src,test}/**/*.ts'",
"lint:fix": "tslint '{src,test}/**/*.ts' --fix"
}
}