This repository has been archived by the owner on Jul 20, 2021. It is now read-only.
forked from akameco/babel-plugin-react-intl-auto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.91 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
{
"name": "babel-plugin-react-intl-auto",
"version": "1.2.0",
"main": "lib/index.js",
"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": "akameco.github.io"
},
"scripts": {
"add-contributor": "all-contributors add",
"precommit": "yarn flow && lint-staged",
"build": "babel src -d lib --ignore __tests__,__fixtures__",
"prepack": "yarn build",
"flow": "flow",
"fmt": "prettier --write '**/*.{js,json,md}'",
"lint": "eslint src",
"add:coveralls": "cat ./coverage/lcov.info | coveralls",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage --ci --runInBand",
"test:ci": "yarn flow && yarn lint && yarn test:coverage"
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint",
"git add"
],
"*.{json,md}": [
"prettier --write",
"git add"
]
},
"keywords": [
"react",
"react-components",
"react-intl",
"i18n",
"react-intl-auto",
"babel-plugin",
"auto",
"babel",
"plugin",
"generate",
"defineMessages"
],
"files": [
"lib"
],
"dependencies": {
"babel-types": "^6.26.0",
"murmurhash3js": "^3.0.1"
},
"devDependencies": {
"all-contributors-cli": "^5.4.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-jest": "^23.4.2",
"babel-log": "^2.0.0",
"babel-plugin-tester": "^5.5.1",
"babel-preset-env": "^1.7.0",
"babel-preset-flow": "^6.23.0",
"babel-register": "^6.26.0",
"coveralls": "^3.0.2",
"eslint": "^4.19.1",
"eslint-config-precure": "^2.7.0",
"flow-bin": "^0.79.1",
"husky": "^0.14.3",
"jest": "^23.5.0",
"lint-staged": "^7.2.2",
"prettier": "^1.14.2"
}
}