forked from nayaabkhan/react-polyglot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.31 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.31 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
{
"name": "react-polyglot",
"version": "0.2.5",
"description": "Higher order React component for using Polyglot",
"main": "lib/index.js",
"files": [
"lib",
"src",
"example",
"typings.d.ts"
],
"scripts": {
"clean": "rimraf lib",
"build:example": "webpack example/app.js example/dist.js",
"build:commonjs": "babel src --out-dir lib",
"build": "npm run build:commonjs",
"prepublish": "npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nayaabkhan/react-polyglot.git"
},
"keywords": [
"react",
"airbnb",
"polyglot",
"i18n"
],
"author": "Nayaabkhan Khan <khannayaab@gmail.com> (http://nayaabkhan.me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/nayaabkhan/react-polyglot/issues"
},
"homepage": "https://github.com/nayaabkhan/react-polyglot#readme",
"peerDependencies": {
"node-polyglot": "^2.0.0",
"react": "^0.14.0 || ^15.0.0-0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.11.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"react-dom": "^15.2.1",
"rimraf": "^2.5.4",
"webpack": "^1.13.1"
},
"dependencies": {
"prop-types": "^15.5.8"
},
"typings": "typings.d.ts"
}