This repository has been archived by the owner on Aug 21, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
73 lines (73 loc) · 1.65 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
{
"name": "extract-react-intl",
"version": "0.9.0",
"description": "Extract react-intl messages",
"license": "MIT",
"repository": "akameco/extract-react-intl",
"author": {
"name": "akameco",
"email": "akameco.t@gmail.com",
"url": "akameco.github.io"
},
"engines": {
"node": ">=8"
},
"scripts": {
"add-contributors": "all-contributors add",
"lint": "eslint --fix .",
"fmt": "prettier --write '**/*.{js,json,md}'",
"test": "jest",
"test:ci": "yarn flow && yarn lint && yarn test"
},
"lint-staged": {
"*.{js,json,md}": [
"prettier --write",
"git add"
]
},
"files": [
"index.js"
],
"keywords": [
"babel",
"merge",
"message",
"react",
"react-intl",
"extract",
"extract-intl",
"extract-react-intl"
],
"dependencies": {
"@babel/core": "^7.0.0",
"babel-plugin-react-intl": "3.0.1",
"glob": "^7.1.3",
"lodash.merge": "^4.6.1",
"lodash.mergewith": "^4.6.1",
"pify": "^4.0.1",
"read-babelrc-up": "^0.3.1"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"all-contributors-cli": "^5.11.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.0.0",
"babel-plugin-react-intl-auto": "^1.6.0",
"eslint": "^5.12.1",
"eslint-config-precure": "^3.5.0",
"flow-bin": "^0.91.0",
"husky": "^1.3.1",
"jest": "^24.0.0",
"lint-staged": "^8.1.1",
"prettier": "^1.16.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}