|
1 | 1 | { |
2 | | - "name": "react-sortable-hoc", |
3 | | - "version": "0.1.0", |
4 | | - "description": "Set of higher-order components to turn any list into a sortable, touch-friendly, animated list", |
5 | | - "author": { |
6 | | - "name": "Clauderic Demers", |
7 | | - |
8 | | - }, |
9 | | - "user": "clauderic", |
10 | | - "homepage": "https://github.com/clauderic/react-sortable-hoc", |
11 | | - "main": "dist/commonjs/index.js", |
12 | | - "jsnext:main": "dist/es6/index.js", |
13 | | - "license": "MIT", |
14 | | - "repository": { |
15 | | - "type": "git", |
16 | | - "url": "https://github.com/clauderic/react-sortable-hoc.git" |
17 | | - }, |
18 | | - "bugs": { |
19 | | - "url": "https://github.com/clauderic/react-sortable-hoc/issues" |
20 | | - }, |
21 | | - "keywords": [ |
22 | | - "react", |
23 | | - "reactjs", |
24 | | - "react-component", |
25 | | - "sortable", |
26 | | - "sortable-list", |
27 | | - "list", |
28 | | - "sortable list", |
29 | | - "smooth", |
30 | | - "animated", |
31 | | - "hoc", |
32 | | - "higher-order", |
33 | | - "component" |
34 | | - ], |
35 | | - "scripts": { |
36 | | - "start": "node server.js", |
37 | | - "build": "npm run build:commonjs && npm run build:es6 && npm run build:umd", |
38 | | - "build:commonjs": "npm run clean:commonjs && cross-env BABEL_ENV=commonjs babel src --out-dir dist/commonjs --ignore *.example.js,*.test.js", |
39 | | - "build:es6": "npm run clean:es6 && cross-env BABEL_ENV=es6 BABEL_DISABLE_CACHE=1 babel src --out-dir dist/es6 --ignore *.test.js", |
40 | | - "build:umd": "cross-env NODE_ENV=production webpack --config webpack.config.umd.js && cross-env NODE_ENV=production webpack --config webpack.config.umd.js --minify", |
41 | | - "clean": "npm run clean:umd", |
42 | | - "clean:umd": "rimraf dist/umd", |
43 | | - "clean:es6": "rimraf dist/es6", |
44 | | - "clean:commonjs": "rimraf dist/commonjs", |
45 | | - "storybook": "start-storybook -p 9001", |
46 | | - "test": "eslint src/** --ext .js" |
47 | | - }, |
48 | | - "dependencies": { |
49 | | - "babel-runtime": "^6.11.6", |
50 | | - "invariant": "^2.2.1", |
51 | | - "lodash": "^4.12.0" |
52 | | - }, |
53 | | - "peerDependencies": { |
54 | | - "react": "^0.14.0 || ^15.0.0", |
55 | | - "react-dom": "^0.14.0 || ^15.0.0" |
56 | | - }, |
57 | | - "devDependencies": { |
58 | | - "@kadira/storybook": "^1.36.0", |
59 | | - "@kadira/storybook-deployer": "^1.0.0", |
60 | | - "autoprefixer": "^6.3.6", |
61 | | - "babel-cli": "^6.9.0", |
62 | | - "babel-core": "^6.3.15", |
63 | | - "babel-eslint": "^6.0.4", |
64 | | - "babel-loader": "^6.2.0", |
65 | | - "babel-plugin-css-modules-transform": "^0.1.0", |
66 | | - "babel-plugin-transform-object-assign": "^6.8.0", |
67 | | - "babel-plugin-transform-runtime": "^6.15.0", |
68 | | - "babel-polyfill": "^6.3.14", |
69 | | - "babel-preset-es2015": "^6.3.13", |
70 | | - "babel-preset-es2015-rollup": "^1.1.1", |
71 | | - "babel-preset-react": "^6.3.13", |
72 | | - "babel-preset-react-hmre": "^1.1.1", |
73 | | - "babel-preset-stage-0": "^6.5.0", |
74 | | - "babel-preset-stage-1": "^6.5.0", |
75 | | - "babel-preset-stage-2": "^6.5.0", |
76 | | - "babel-register": "^6.3.13", |
77 | | - "classnames": "^2.2.5", |
78 | | - "cross-env": "^1.0.7", |
79 | | - "css-loader": "^0.23.1", |
80 | | - "eslint": "^2.10.1", |
81 | | - "eslint-config-xo-react": "^0.7.0", |
82 | | - "eslint-plugin-react": "^5.1.1", |
83 | | - "express": "^4.13.3", |
84 | | - "extract-text-webpack-plugin": "^1.0.1", |
85 | | - "html-webpack-plugin": "^2.16.1", |
86 | | - "isparta-loader": "^2.0.0", |
87 | | - "node-libs-browser": "^0.5.2", |
88 | | - "node-sass": "^3.7.0", |
89 | | - "postcss-loader": "^0.9.1", |
90 | | - "qs": "^6.2.0", |
91 | | - "raw-loader": "^0.5.1", |
92 | | - "react": "^15.2.1", |
93 | | - "react-addons-pure-render-mixin": "^15.0.2", |
94 | | - "react-addons-shallow-compare": "^15.1.0", |
95 | | - "react-addons-test-utils": "^15.1.0", |
96 | | - "react-infinite": "^0.9.2", |
97 | | - "react-virtualized": "^7.15.1", |
98 | | - "redux": "^3.5.2", |
99 | | - "rimraf": "^2.5.2", |
100 | | - "sass-loader": "^3.2.0", |
101 | | - "stack-source-map": "^1.0.4", |
102 | | - "style-loader": "^0.13.1", |
103 | | - "webpack": "^1.9.11", |
104 | | - "webpack-dev-middleware": "^1.2.0", |
105 | | - "webpack-hot-middleware": "^2.9.1", |
106 | | - "yargs": "^4.7.1" |
107 | | - }, |
108 | | - "xo": { |
109 | | - "esnext": true, |
110 | | - "extends": "xo-react" |
111 | | - } |
| 2 | + "name": "react-sortable-hoc", |
| 3 | + "version": "0.1.1", |
| 4 | + "description": "Set of higher-order components to turn any list into a sortable, touch-friendly, animated list", |
| 5 | + "author": { |
| 6 | + "name": "Clauderic Demers", |
| 7 | + |
| 8 | + }, |
| 9 | + "user": "clauderic", |
| 10 | + "homepage": "https://github.com/clauderic/react-sortable-hoc", |
| 11 | + "main": "dist/commonjs/index.js", |
| 12 | + "jsnext:main": "dist/es6/index.js", |
| 13 | + "license": "MIT", |
| 14 | + "repository": { |
| 15 | + "type": "git", |
| 16 | + "url": "https://github.com/clauderic/react-sortable-hoc.git" |
| 17 | + }, |
| 18 | + "bugs": { |
| 19 | + "url": "https://github.com/clauderic/react-sortable-hoc/issues" |
| 20 | + }, |
| 21 | + "keywords": [ |
| 22 | + "react", |
| 23 | + "reactjs", |
| 24 | + "react-component", |
| 25 | + "sortable", |
| 26 | + "sortable-list", |
| 27 | + "list", |
| 28 | + "sortable list", |
| 29 | + "smooth", |
| 30 | + "animated", |
| 31 | + "hoc", |
| 32 | + "higher-order", |
| 33 | + "component" |
| 34 | + ], |
| 35 | + "scripts": { |
| 36 | + "start": "node server.js", |
| 37 | + "build": "npm run build:commonjs && npm run build:es6 && npm run build:umd", |
| 38 | + "build:commonjs": "npm run clean:commonjs && cross-env BABEL_ENV=commonjs babel src --out-dir dist/commonjs --ignore *.example.js,*.test.js", |
| 39 | + "build:es6": "npm run clean:es6 && cross-env BABEL_ENV=es6 BABEL_DISABLE_CACHE=1 babel src --out-dir dist/es6 --ignore *.test.js", |
| 40 | + "build:umd": "cross-env NODE_ENV=production webpack --config webpack.config.umd.js && cross-env NODE_ENV=production webpack --config webpack.config.umd.js --minify", |
| 41 | + "clean": "npm run clean:umd", |
| 42 | + "clean:umd": "rimraf dist/umd", |
| 43 | + "clean:es6": "rimraf dist/es6", |
| 44 | + "clean:commonjs": "rimraf dist/commonjs", |
| 45 | + "storybook": "start-storybook -p 9001", |
| 46 | + "test": "eslint src/** --ext .js" |
| 47 | + }, |
| 48 | + "dependencies": { |
| 49 | + "babel-runtime": "^6.11.6", |
| 50 | + "invariant": "^2.2.1", |
| 51 | + "lodash": "^4.12.0" |
| 52 | + }, |
| 53 | + "peerDependencies": { |
| 54 | + "react": "^0.14.0 || ^15.0.0", |
| 55 | + "react-dom": "^0.14.0 || ^15.0.0" |
| 56 | + }, |
| 57 | + "devDependencies": { |
| 58 | + "@kadira/storybook": "^1.36.0", |
| 59 | + "@kadira/storybook-deployer": "^1.0.0", |
| 60 | + "autoprefixer": "^6.3.6", |
| 61 | + "babel-cli": "^6.9.0", |
| 62 | + "babel-core": "^6.3.15", |
| 63 | + "babel-eslint": "^6.0.4", |
| 64 | + "babel-loader": "^6.2.0", |
| 65 | + "babel-plugin-css-modules-transform": "^0.1.0", |
| 66 | + "babel-plugin-transform-object-assign": "^6.8.0", |
| 67 | + "babel-plugin-transform-runtime": "^6.15.0", |
| 68 | + "babel-polyfill": "^6.3.14", |
| 69 | + "babel-preset-es2015": "^6.3.13", |
| 70 | + "babel-preset-es2015-rollup": "^1.1.1", |
| 71 | + "babel-preset-react": "^6.3.13", |
| 72 | + "babel-preset-react-hmre": "^1.1.1", |
| 73 | + "babel-preset-stage-0": "^6.5.0", |
| 74 | + "babel-preset-stage-1": "^6.5.0", |
| 75 | + "babel-preset-stage-2": "^6.5.0", |
| 76 | + "babel-register": "^6.3.13", |
| 77 | + "classnames": "^2.2.5", |
| 78 | + "cross-env": "^1.0.7", |
| 79 | + "css-loader": "^0.23.1", |
| 80 | + "eslint": "^2.10.1", |
| 81 | + "eslint-config-xo-react": "^0.7.0", |
| 82 | + "eslint-plugin-react": "^5.1.1", |
| 83 | + "express": "^4.13.3", |
| 84 | + "extract-text-webpack-plugin": "^1.0.1", |
| 85 | + "html-webpack-plugin": "^2.16.1", |
| 86 | + "isparta-loader": "^2.0.0", |
| 87 | + "node-libs-browser": "^0.5.2", |
| 88 | + "node-sass": "^3.7.0", |
| 89 | + "postcss-loader": "^0.9.1", |
| 90 | + "qs": "^6.2.0", |
| 91 | + "raw-loader": "^0.5.1", |
| 92 | + "react": "^15.2.1", |
| 93 | + "react-addons-pure-render-mixin": "^15.0.2", |
| 94 | + "react-addons-shallow-compare": "^15.1.0", |
| 95 | + "react-addons-test-utils": "^15.1.0", |
| 96 | + "react-infinite": "^0.9.2", |
| 97 | + "react-virtualized": "^7.15.1", |
| 98 | + "redux": "^3.5.2", |
| 99 | + "rimraf": "^2.5.2", |
| 100 | + "sass-loader": "^3.2.0", |
| 101 | + "stack-source-map": "^1.0.4", |
| 102 | + "style-loader": "^0.13.1", |
| 103 | + "webpack": "^1.9.11", |
| 104 | + "webpack-dev-middleware": "^1.2.0", |
| 105 | + "webpack-hot-middleware": "^2.9.1", |
| 106 | + "yargs": "^4.7.1" |
| 107 | + }, |
| 108 | + "xo": { |
| 109 | + "esnext": true, |
| 110 | + "extends": "xo-react" |
| 111 | + } |
112 | 112 | } |
0 commit comments