UNPKG

3.07 kBJSONView Raw
1{
2 "name": "react-proxy",
3 "version": "2.0.6",
4 "description": "Proxies React components without unmounting or losing their state.",
5 "main": "modules/index.js",
6 "scripts": {
7 "build": "rimraf modules dist && NODE_ENV=babel-es2015 webpack && NODE_ENV=babel-es2015 babel src --out-dir modules",
8 "test": "npm run test:babel-es2015 && npm run test:native-es2015",
9 "test:babel-es2015": "NODE_ENV=babel-es2015 mocha --compilers js:babel-core/register --recursive ./test",
10 "test:native-es2015": "NODE_ENV=native-es2015 mocha --compilers js:babel-core/register --recursive ./test",
11 "test:native-es2015:watch": "npm run test:native-es2015 -- --watch",
12 "test:watch": "npm run test:babel-es2015 -- --watch",
13 "prepublish": "npm run build && npm test"
14 },
15 "files": [
16 "dist",
17 "modules",
18 "src"
19 ],
20 "repository": {
21 "type": "git",
22 "url": "https://github.com/gaearon/react-proxy.git"
23 },
24 "author": "Dan Abramov <dan.abramov@me.com> (http://github.com/gaearon)",
25 "license": "MIT",
26 "bugs": {
27 "url": "https://github.com/gaearon/react-proxy/issues"
28 },
29 "homepage": "https://github.com/gaearon/react-proxy",
30 "devDependencies": {
31 "babel-cli": "^6.3.17",
32 "babel-core": "^6.3.21",
33 "babel-loader": "^6.2.0",
34 "babel-plugin-check-es2015-constants": "^6.3.13",
35 "babel-plugin-syntax-jsx": "^6.3.13",
36 "babel-plugin-transform-class-properties": "^6.5.0",
37 "babel-plugin-transform-decorators-legacy": "^1.2.0",
38 "babel-plugin-transform-es2015-arrow-functions": "^6.3.13",
39 "babel-plugin-transform-es2015-block-scoped-functions": "^6.3.13",
40 "babel-plugin-transform-es2015-block-scoping": "^6.3.13",
41 "babel-plugin-transform-es2015-classes": "^6.3.13",
42 "babel-plugin-transform-es2015-computed-properties": "^6.3.13",
43 "babel-plugin-transform-es2015-destructuring": "^6.3.13",
44 "babel-plugin-transform-es2015-for-of": "^6.3.13",
45 "babel-plugin-transform-es2015-function-name": "^6.3.13",
46 "babel-plugin-transform-es2015-literals": "^6.3.13",
47 "babel-plugin-transform-es2015-modules-commonjs": "^6.3.13",
48 "babel-plugin-transform-es2015-object-super": "^6.3.13",
49 "babel-plugin-transform-es2015-parameters": "^6.3.13",
50 "babel-plugin-transform-es2015-shorthand-properties": "^6.3.13",
51 "babel-plugin-transform-es2015-spread": "^6.3.13",
52 "babel-plugin-transform-es2015-sticky-regex": "^6.3.13",
53 "babel-plugin-transform-es2015-template-literals": "^6.3.13",
54 "babel-plugin-transform-es2015-unicode-regex": "^6.3.13",
55 "babel-plugin-transform-flow-strip-types": "^6.5.0",
56 "babel-plugin-transform-object-rest-spread": "^6.3.13",
57 "babel-plugin-transform-react-display-name": "^6.4.0",
58 "babel-plugin-transform-react-jsx": "^6.4.0",
59 "expect": "^1.9.0",
60 "mocha": "^2.2.4",
61 "react": "^0.14.0",
62 "react-addons-test-utils": "^0.14.0",
63 "rimraf": "^2.4.2",
64 "webpack": "1.4.8"
65 },
66 "dependencies": {
67 "babel-preset-es2015": "^6.6.0",
68 "babel-preset-react": "^6.5.0",
69 "core-js": "^2.1.3",
70 "lodash": "^3.7.0"
71 }
72}