-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
59 lines (59 loc) · 1.64 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
{
"name": "react-dom-inject",
"version": "0.1.12",
"description": "Binds an HTML element by selector to a ReactElement and renders to a DOM tree (with optional redux injection).",
"main": "lib/index.js",
"files": [
"lib",
"src",
"doc"
],
"scripts": {
"prebuild": "rimraf build",
"build": "babel src/lib -d lib",
"watch": "npm run build -- --watch",
"predoc": "rimraf doc",
"doc": "esdoc -c ./esdoc.json",
"prerelease": "npm run build",
"release": "npm version patch && npm publish",
"postrelease": "npm run release-doc",
"prerelease-doc": "npm run doc",
"release-doc": "git subtree push --prefix doc origin gh-pages",
"postrelease-doc": "git commit -am \"doc-release\" && git push --follow-tags",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cchamberlain/react-dom-inject.git"
},
"keywords": [
"React",
"ReactDOM",
"HTML"
],
"author": "Cole Chamberlain <cole.chamberlain@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cchamberlain/react-dom-inject/issues"
},
"homepage": "https://github.com/cchamberlain/react-dom-inject#readme",
"peerDependencies": {
"react": "^15.0.0",
"react-dom": "^15.0.0"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"esdoc": "^0.4.6",
"esdoc-es7-plugin": "0.0.3",
"rimraf": "^2.5.2"
},
"optionalDependencies": {
"react-redux": "^4.4.2"
},
"dependencies": {
"redux": "^3.4.0"
}
}