|
| 1 | +{ |
| 2 | + "name": "react-sortable-tree", |
| 3 | + "version": "0.0.1", |
| 4 | + "description": "Drag-and-drop sortable representation of hierarchical data", |
| 5 | + "scripts": { |
| 6 | + "build": "npm run lint && npm run build:demo && npm run build:umd", |
| 7 | + "build:demo": "npm run clean:demo && cross-env NODE_ENV=production webpack --config webpack.config.demo.babel.js --bail", |
| 8 | + "build:umd": "npm run clean:umd && cross-env NODE_ENV=production webpack --config webpack.config.umd.babel.js --bail", |
| 9 | + "clean": "npm run clean:demo && npm run clean:umd", |
| 10 | + "clean:demo": "rimraf build", |
| 11 | + "clean:umd": "rimraf dist/umd", |
| 12 | + "start": "cross-env NODE_ENV=development webpack-dev-server --hot --inline --config webpack.config.dev.babel.js", |
| 13 | + "test": "webpack", |
| 14 | + "lint": "eslint src", |
| 15 | + "deploy": "npm run build && gh-pages -d build", |
| 16 | + "prepublish": "npm run lint && npm run build:umd" |
| 17 | + }, |
| 18 | + "main": "dist/umd/react-sortable-tree.js", |
| 19 | + "files": [ |
| 20 | + "dist" |
| 21 | + ], |
| 22 | + "repository": { |
| 23 | + "type": "git", |
| 24 | + "url": "https://github.com/fritz-c/react-sortable-tree" |
| 25 | + }, |
| 26 | + "homepage": "https://fritz-c.github.io/react-sortable-tree", |
| 27 | + "bugs": "https://github.com/fritz-c/react-sortable-tree/issues", |
| 28 | + "authors": [ |
| 29 | + "Chris Fritz" |
| 30 | + ], |
| 31 | + "license": "MIT", |
| 32 | + "dependencies": {}, |
| 33 | + "peerDependencies": { |
| 34 | + "react": "^15.0.0", |
| 35 | + "react-dom": "^15.0.0" |
| 36 | + }, |
| 37 | + "devDependencies": { |
| 38 | + "autoprefixer": "^6.3.7", |
| 39 | + "babel-cli": "^6.10.1", |
| 40 | + "babel-core": "^6.10.4", |
| 41 | + "babel-eslint": "^6.1.2", |
| 42 | + "babel-loader": "^6.2.4", |
| 43 | + "babel-plugin-transform-object-rest-spread": "^6.8.0", |
| 44 | + "babel-preset-es2015": "^6.9.0", |
| 45 | + "babel-preset-react": "^6.11.1", |
| 46 | + "cross-env": "^2.0.0", |
| 47 | + "css-loader": "^0.23.1", |
| 48 | + "eslint": "^2.9.0", |
| 49 | + "eslint-config-blue-hour": "0.x.x", |
| 50 | + "eslint-plugin-import": "^1.10.2", |
| 51 | + "eslint-plugin-jsx-a11y": "^1.5.5", |
| 52 | + "eslint-plugin-react": "^5.2.2", |
| 53 | + "file-loader": "^0.9.0", |
| 54 | + "gh-pages": "^0.11.0", |
| 55 | + "html-webpack-plugin": "^2.22.0", |
| 56 | + "node-sass": "^3.8.0", |
| 57 | + "postcss-loader": "^0.9.1", |
| 58 | + "react": "^15.2.0", |
| 59 | + "react-dom": "^15.2.0", |
| 60 | + "react-hot-loader": "^1.3.0", |
| 61 | + "rimraf": "^2.5.3", |
| 62 | + "sass-loader": "^4.0.0", |
| 63 | + "style-loader": "^0.13.1", |
| 64 | + "webpack": "^1.13.1", |
| 65 | + "webpack-dev-server": "^1.14.1" |
| 66 | + }, |
| 67 | + "keywords": [ |
| 68 | + "react", |
| 69 | + "react-component" |
| 70 | + ] |
| 71 | +} |
0 commit comments