forked from rdnewman/react_webpack_rails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.22 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
{
"name": "react-webpack-rails",
"version": "0.6.0",
"description": "Js part of react_webpack_rails - webpack based React & Rails integration.",
"main": "js/lib/index.js",
"files": [
"js/lib"
],
"scripts": {
"compile": "babel --presets es2015 -d js/lib/ js/src/",
"prepublish": "npm run compile",
"test": "mocha js/test --ui bdd --recursive --require babel-core/register"
},
"repository": {
"type": "git",
"url": "git+https://github.com/netguru/react_webpack_rails.git"
},
"keywords": [
"react",
"rails",
"webpack",
"react_webpack_rails"
],
"author": "Rafał Gawlik",
"license": "MIT",
"bugs": {
"url": "https://github.com/netguru/react_webpack_rails/issues"
},
"homepage": "https://github.com/netguru/react_webpack_rails#readme",
"dependencies": {
"babel-polyfill": "^6.3.0",
"react": "^15.0.0",
"react-dom": "^15.0.0"
},
"devDependencies": {
"babel-cli": "^6.10.0",
"babel-core": "^6.10.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.0",
"eslint": "^2.13.0",
"eslint-config-airbnb": "^9.0.0",
"eslint-plugin-react": "^5.2.0",
"expect": "^1.20.0",
"history": "^3.0.0",
"mocha": "^2.5.0"
}
}