forked from akameco/extract-react-intl-messages
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 1.77 KB
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
{
"name": "extract-react-intl-messages",
"version": "1.0.1",
"description": "Extract react-intl messages",
"license": "MIT",
"repository": "akameco/extract-react-intl-messages",
"author": {
"name": "akameco",
"email": "akameco.t@gmail.com",
"url": "akameco.github.io"
},
"engines": {
"node": ">=8"
},
"scripts": {
"add-contributor": "all-contributors add",
"fmt": "prettier --write '**/*.{json,js,md}'",
"example": "./cli.js -l=en,ja -o example/i18n -d en 'example/**/*.js'",
"test": "xo && ava"
},
"bin": {
"extract-react-intl-messages": "cli.js",
"extract-messages": "cli.js"
},
"files": [
"index.js",
"cli.js"
],
"keywords": [
"react",
"i18n",
"intl",
"react-intl",
"extract",
"json",
"messages"
],
"dependencies": {
"extract-react-intl": "git://github.com/jochen-schweizer/extract-react-intl.git",
"flat": "^4.1.0",
"js-yaml": "^3.12.1",
"load-json-file": "^5.1.0",
"lodash.pick": "^4.4.0",
"meow": "^5.0.0",
"mkdirp": "^0.5.1",
"sort-keys": "^2.0.0",
"write-json-file": "^3.0.2"
},
"devDependencies": {
"all-contributors-cli": "^5.10.2",
"ava": "^1.1.0",
"husky": "^1.3.1",
"lint-staged": "^8.1.0",
"pify": "^4.0.1",
"prettier": "^1.16.1",
"react": "^16.7.0",
"react-intl": "^2.8.0",
"temp-write": "^3.4.0",
"tempy": "^0.2.1",
"xo": "^0.24.0"
},
"lint-staged": {
"*.{js,json,md}": [
"prettier --write",
"git add"
]
},
"xo": {
"space": true,
"semicolon": false,
"rules": {
"object-curly-spacing": [
2,
"always"
],
"operator-linebreak": 0,
"indent": 0
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}