-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
98 lines (98 loc) · 2.95 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
93
94
95
96
97
98
{
"name": "react-translate-maker",
"version": "3.1.6",
"description": "React translation module. Internationalize your great project.",
"main": "./dist/index.js",
"browser": "./lib/index.js",
"module": "./module/index.js",
"esnext": "./src/index.js",
"sideEffects": false,
"engines": {
"node": ">= 6.0.0"
},
"keywords": [
"translate",
"translation",
"localization",
"localize",
"locale",
"project",
"module",
"i18n",
"i10n",
"l20n",
"react",
"react.js",
"internationalization",
"react-component",
"interpolation",
"interpolate",
"plural"
],
"scripts": {
"prepublish": "npm run build",
"test": "jest ./src/",
"test:coverage": "jest --coverage ./src/",
"test:watch": "jest --watch ./src/",
"build-browser": "cross-env BABEL_ENV=browser babel ./src --out-dir ./lib --source-maps --copy-files",
"build-module": "cross-env BABEL_ENV=module babel ./src --out-dir ./module --source-maps --copy-files",
"build-node": "babel ./src --out-dir ./dist --source-maps --copy-files",
"build": "npm run build-node && npm run build-browser && npm run build-module",
"eslint": "node ./node_modules/eslint/bin/eslint.js --ext .js,.jsx ./src"
},
"repository": {
"type": "git",
"url": "https://github.com/CherryProjects/react-translate-maker.git"
},
"author": "Zlatko Fedor <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/CherryProjects/react-translate-maker/issues"
},
"homepage": "https://github.com/CherryProjects/react-translate-maker",
"jest": {
"setupFiles": [
"<rootDir>/setupJest.js"
]
},
"dependencies": {
"@babel/runtime": "^7.4.4",
"lodash": "^4.17.11"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/plugin-transform-flow-strip-types": "7.4.4",
"@babel/plugin-transform-proto-to-assign": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"@babel/preset-stage-0": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-syntax-import-meta": "^7.2.0",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-json-strings": "^7.2.0",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"babel-eslint": "^10.0.1",
"cross-env": "^5.2.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"jest": "^24.7.1",
"jest-cli": "^24.7.1",
"translate-maker": "^0.7.4",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.12.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-test-renderer": "^16.8.6"
},
"peerDependencies": {
"react": "16.x",
"react-dom": "16.x",
"translate-maker": "0.7.x"
}
}