UNPKG

1.29 kBJSONView Raw
1{
2 "name": "react-proxy",
3 "version": "2.0.1",
4 "description": "Proxies React components without unmounting or losing their state.",
5 "main": "modules/index.js",
6 "scripts": {
7 "build": "rimraf modules dist && webpack && babel src --out-dir modules",
8 "test": "mocha --compilers js:babel-core/register --recursive ./test",
9 "test:watch": "npm run test -- --watch",
10 "prepublish": "npm run build"
11 },
12 "files": [
13 "dist",
14 "modules",
15 "src"
16 ],
17 "repository": {
18 "type": "git",
19 "url": "https://github.com/gaearon/react-proxy.git"
20 },
21 "author": "Dan Abramov <dan.abramov@me.com> (http://github.com/gaearon)",
22 "license": "MIT",
23 "bugs": {
24 "url": "https://github.com/gaearon/react-proxy/issues"
25 },
26 "homepage": "https://github.com/gaearon/react-proxy",
27 "devDependencies": {
28 "babel-cli": "^6.3.17",
29 "babel-core": "^6.3.21",
30 "babel-loader": "^6.2.0",
31 "babel-plugin-transform-decorators-legacy": "^1.3.4",
32 "babel-preset-es2015": "^6.3.3",
33 "babel-preset-react": "^6.3.13",
34 "babel-preset-stage-0": "^6.3.13",
35 "expect": "^1.9.0",
36 "mocha": "^2.2.4",
37 "react": "^0.14.0",
38 "react-addons-test-utils": "^0.14.0",
39 "rimraf": "^2.4.2",
40 "webpack": "1.4.8"
41 },
42 "dependencies": {
43 "lodash": "^3.7.0"
44 }
45}