-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
92 lines (92 loc) · 2.22 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "babel-plugin-react-intl-auto",
"version": "3.3.0",
"main": "lib/index.js",
"types": "types.d.ts",
"description": "i18n for the component age. Auto management react-intl ID",
"license": "MIT",
"repository": "akameco/babel-plugin-react-intl-auto",
"author": {
"name": "akameco",
"email": "[email protected]",
"url": "https://akameco.github.io"
},
"engines": {
"node": ">=10"
},
"scripts": {
"build": "babel src -d lib --ignore __tests__,__fixtures__ --extensions .ts",
"prepack": "yarn build",
"fmt": "prettier --write .",
"lint": "eslint src --ext ts",
"add:coveralls": "cat ./coverage/lcov.info | coveralls",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage --ci --runInBand",
"test:ci": "yarn lint && yarn test:coverage"
},
"lint-staged": {
"*.{ts}": [
"prettier --write",
"eslint"
],
"*.{js,json,md}": [
"prettier --write"
]
},
"keywords": [
"react",
"react-components",
"react-intl",
"i18n",
"react-intl-auto",
"babel-plugin",
"auto",
"babel",
"plugin",
"generate",
"defineMessages"
],
"files": [
"lib",
"types.d.ts"
],
"dependencies": {
"@babel/core": "^7.9.0",
"@babel/traverse": "^7.9.0",
"@babel/types": "^7.9.0",
"murmurhash3js": "^3.0.1"
},
"devDependencies": {
"@akameco/tsconfig": "0.4.0",
"@babel/cli": "7.14.8",
"@babel/preset-env": "7.14.8",
"@babel/preset-typescript": "7.14.5",
"@babel/register": "7.14.5",
"@types/babel__core": "7.1.15",
"@types/babel__traverse": "7.14.2",
"@types/jest": "26.0.24",
"@types/murmurhash3js": "3.0.2",
"@types/node": "14.17.5",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.1.0",
"babel-jest": "26.6.3",
"babel-log": "2.0.0",
"babel-plugin-tester": "9.2.0",
"coveralls": "3.1.1",
"eslint": "7.31.0",
"eslint-config-precure": "5.4.0",
"husky": "4.3.8",
"jest": "26.6.3",
"lint-staged": "10.5.4",
"prettier": "2.3.2",
"react-intl": "4.7.6",
"string-snapshot-serializer": "1.0.1",
"typescript": "3.9.10"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}