-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
94 lines (94 loc) · 2.81 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
{
"name": "jsxlate",
"version": "0.6.0",
"description": "Automatic message extraction and translation for JSX files",
"main": "./build/transform.js",
"bin": {
"extract-messages": "./bin/extract-messages.js",
"bundle-messages": "./bin/bundle-messages.js",
"jsxlate-lint": "./bin/jsxlate-lint.js"
},
"scripts": {
"build": "npm run test && ./build.sh",
"prepublish": "npm run build",
"test": "npm run lint && NODE_ENV=test nyc mocha --compilers js:babel-register",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint src test",
"example:simple": "cd examples/simple && node server.js",
"example:react-intl": "cd examples/react-intl && node server.js"
},
"author": "Eric O'Connell <eric.oconnell@idealist.org>",
"contributors": [
"Carl Bauer <carl@idealist.org>",
"Ben Carr <ben@idealist.org>",
"David McCabe <davidmccabe@gmail.com>",
"Mike Sugarbaker <mike.sugarbaker@idealist.org>"
],
"license": "MIT",
"keywords": [
"jsx",
"react",
"translation",
"i18n",
"l10n",
"internationalization"
],
"dependencies": {
"babel-cli": "^6.7.7",
"babel-code-frame": "^6.7.7",
"babel-core": "^6.7.7",
"babel-eslint": "^6.0.4",
"babel-generator": "^6.7.7",
"babel-plugin-syntax-jsx": "^6.3.13",
"babel-plugin-syntax-object-rest-spread": "^6.3.13",
"babel-plugin-transform-es2015-arrow-functions": "^6.7.7",
"babel-plugin-transform-es2015-classes": "^6.7.7",
"babel-plugin-transform-es2015-modules-commonjs": "^6.7.7",
"babel-plugin-transform-object-rest-spread": "^6.3.13",
"babel-plugin-transform-react-jsx": "^6.7.5",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-register": "^6.4.3",
"babel-template": "^6.3.13",
"babel-traverse": "^6.7.6",
"babel-types": "^6.7.7",
"babylon": "^6.4.5",
"chalk": "^1.1.0",
"coveralls": "^2.11.8",
"expand-tilde": "^1.2.0",
"glob-to-regexp": "0.0.2",
"immutable": "^3.7.3",
"minimist": "^1.1.1",
"nyc": "^6.0.0",
"pofile": "^1.0.2",
"rw": "^0.1.4",
"walk": "^2.3.9"
},
"peerDependencies": {
"react": "^0.14.0",
"react-intl": "^2.0.0-beta-2"
},
"devDependencies": {
"babel-eslint": "^6.0.2",
"babel-loader": "^6.2.1",
"babel-preset-react": "^6.5.0",
"chai": "^3.2.0",
"eslint": "~2.2.0",
"eslint-plugin-react": "^4.1.0",
"mocha": "^2.3.0",
"node-inspector": "^0.12.3",
"nodeunit": "^0.9.0",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"react-hot-loader": "^1.3.0",
"react-intl": "^2.1.1",
"sinon": "^1.16.1",
"webpack": "^1.9.5",
"webpack-dev-server": "^1.9.0"
},
"repository": {
"type": "git",
"url": "http://github.com/drd/jsxlate.git"
},
"homepage": "http://github.com/drd/jsxlate"
}