This repository has been archived by the owner on Sep 14, 2023. It is now read-only.
forked from shakacode/react_on_rails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.75 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
{
"name": "react-on-rails",
"version": "6.1.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.6.5",
"babel-core": "^6.7.4",
"babel-loader": "^6.2.4",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-flow-strip-types": "^6.8.0",
"babel-plugin-transform-runtime": "^6.6.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-runtime": "^6.6.1",
"babel-tape-runner": "^2.0.1",
"babel-types": "^6.7.2",
"babelify": "^7.2.0",
"blue-tape": "^0.2.0",
"eslint": "^3.3.1",
"eslint-config-shakacode": "^6.0.0",
"eslint-plugin-import": "^1.13.0",
"eslint-plugin-jsx-a11y": "^2.1.0",
"eslint-plugin-react": "^6.1.2",
"flow-bin": "^0.30.0",
"jscs": "^2.11.0",
"jsdom": "^8.2.0",
"react": "^15.0.0",
"react-dom": "^15.0.0",
"react-transform-hmr": "^1.0.4",
"redux": "^3.3.1",
"release-it": "^2.3.1",
"tap-spec": "^4.1.1",
"tape": "^4.5.1",
"webpack": "^1.12.14"
},
"peerDependencies": {
"react": ">= 0.14",
"react-dom": ">= 0.14",
"babel-runtime": ">= 6"
},
"files": [
"node_package/lib"
],
"scripts": {
"test": "babel-tape-runner node_package/tests/*.js | tap-spec",
"clean": "rm -rf node_package/lib",
"prepublish": "npm run build",
"babel": "babel --out-dir node_package/lib node_package/src",
"build": "npm run clean && npm run babel",
"build-watch": "babel --watch --out-dir node_package/lib node_package/src",
"eslint": "eslint .",
"jscs": "jscs -e -v .",
"flow": "flow check node_package",
"lint": "npm run eslint && npm run jscs && npm run flow",
"lint:fix": "node_package/scripts/lint-fix",
"check": "npm run lint && npm run test",
"prerelease": "npm run check && npm run clean && npm 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 npm run dummy:install' && npm 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": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/shakacode/react_on_rails/issues"
},
"homepage": "https://github.com/shakacode/react_on_rails#readme"
}