-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
78 lines (78 loc) · 1.87 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": "i18nize-react",
"bin": {
"i18nize-react": "src/index.js"
},
"version": "0.11.0",
"description": "A babel plugin cli to automatically internationalize any react app",
"main": "index.js",
"scripts": {
"start": "node ./src/index.js",
"lint": "eslint ./src/*",
"lint:fix": "eslint ./src/* --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/Ghost---Shadow/i18nize-react"
},
"keywords": [
"i18n",
"i18next",
"react",
"babel",
"babeljs",
"babel-plugin",
"cli"
],
"author": "Souradeep Nanda",
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"babel-jest": "^24.7.1",
"babel-plugin-tester": "^6.0.1",
"babel-test": "^0.2.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"husky": "^2.1.0",
"jest": "^24.7.1",
"jest-file-snapshot": "^0.3.6",
"react-test-renderer": "^16.8.6"
},
"dependencies": {
"@babel/core": "^7.4.4",
"@babel/generator": "^7.4.4",
"@babel/parser": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/traverse": "^7.4.4",
"babel-project-relative-import": "^2.0.1",
"lodash": "^4.17.11",
"mkdirp": "^0.5.1",
"randchinese": "^1.0.0"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/scratchpad",
"/test/walking_test"
],
"watchPathIgnorePatterns": [
"fixtures/*",
"__file_snapshots__",
"/test/walking_test"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm test"
}
}
}