-
-
Notifications
You must be signed in to change notification settings - Fork 630
/
package.json
86 lines (86 loc) · 2.77 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
{
"name": "react-on-rails",
"version": "6.5.1",
"description": "react-on-rails JavaScript for react_on_rails Ruby gem",
"main": "node_package/lib/ReactOnRails.js",
"directories": {
"doc": "docs"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-flow-strip-types": "^6.21.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-runtime": "^6.20.0",
"babel-tape-runner": "^2.0.1",
"babel-types": "^6.21.0",
"babelify": "^7.3.0",
"blue-tape": "^1.0.0",
"eslint": "^3.12.2",
"eslint-config-shakacode": "^13.2.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.8.0",
"flow-bin": "^0.37.4",
"jsdom": "^9.9.1",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-transform-hmr": "^1.0.4",
"redux": "^3.6.0",
"release-it": "^2.5.3",
"tap-spec": "^4.1.1",
"tape": "^4.6.3",
"webpack": "^1.14.0"
},
"peerDependencies": {
"babel-runtime": ">= 6",
"react": ">= 0.14",
"react-dom": ">= 0.14"
},
"files": [
"node_package/lib"
],
"scripts": {
"test": "babel-tape-runner -r node_package/tests/helpers/test_helper.js node_package/tests/*.js | tap-spec",
"clean": "rm -rf node_package/lib",
"prepublish": "yarn run build",
"babel": "babel --out-dir node_package/lib node_package/src",
"build": "yarn run clean && yarn run babel",
"build-watch": "babel --watch --out-dir node_package/lib node_package/src",
"eslint": "eslint .",
"flow": "flow check node_package",
"lint": "yarn run eslint && yarn run jscs && yarn run flow",
"lint:fix": "node_package/scripts/lint-fix",
"check": "yarn run lint && yarn run test",
"prerelease": "yarn run check && yarn run clean && yarn run build",
"release:patch": "node_package/scripts/release patch",
"release:minor": "node_package/scripts/release minor",
"release:major": "node_package/scripts/release major",
"dummy:install": "rake dummy_apps",
"dummy:spec": "rake run_rspec:dummy",
"local": "echo 'Be sure to run yarn run dummy:install' && yarn run build && cd spec/dummy && foreman start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shakacode/react_on_rails.git"
},
"keywords": [
"react",
"webpack",
"JavaScript",
"Ruby",
"on",
"Rails"
],
"author": "justin.gordon@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/shakacode/react_on_rails/issues"
},
"homepage": "https://github.com/shakacode/react_on_rails#readme"
}