|
| 1 | +{ |
| 2 | + "name": "unicorn-editor", |
| 3 | + "version": "0.0.0", |
| 4 | + "description": "Everything about Unicorns!", |
| 5 | + "author": { |
| 6 | + "name": "Nik Graf", |
| 7 | + |
| 8 | + "url": "http://www.nikgraf.com" |
| 9 | + }, |
| 10 | + "repository": { |
| 11 | + "type": "git", |
| 12 | + "url": "http://github.com/nikgraf/unicorn-editor.git" |
| 13 | + }, |
| 14 | + "main": "lib/index.js", |
| 15 | + "keywords": [ |
| 16 | + "unicorn", |
| 17 | + "react", |
| 18 | + "ux", |
| 19 | + "components", |
| 20 | + "widget", |
| 21 | + "react-component" |
| 22 | + ], |
| 23 | + "peerDependencies": { |
| 24 | + "react": ">=0.14.0", |
| 25 | + "react-dom": ">=0.14.0" |
| 26 | + }, |
| 27 | + "scripts": { |
| 28 | + "build": "BABEL_ENV=production ./node_modules/.bin/babel --out-dir='lib' --ignore='__tests__/*' src", |
| 29 | + "prepublish": "npm run build", |
| 30 | + "postpublish": "./scripts/publish_gh_pages.sh", |
| 31 | + "test": "BABEL_ENV=test BABEL_JEST_STAGE=0 jest src/", |
| 32 | + "test:watch": "npm run test -- --watch", |
| 33 | + "lint": "npm run lint:eslint && npm run lint:jscs", |
| 34 | + "lint:eslint": "eslint --rule 'mocha/no-exclusive-tests:2' ./", |
| 35 | + "lint:eslint:fix": "eslint --fix --rule 'mocha/no-exclusive-tests:2' ./", |
| 36 | + "lint:jscs": "jscs ./", |
| 37 | + "lint:jscs:src": "jscs src", |
| 38 | + "lint:jscs:examples": "jscs examples --max-old-space-size=4096", |
| 39 | + "lint:jscs:docs": "jscs docs", |
| 40 | + "alex": "alex README.md" |
| 41 | + }, |
| 42 | + "devDependencies": { |
| 43 | + "alex": "^2.0.1", |
| 44 | + "babel-cli": "^6.5.1", |
| 45 | + "babel-core": "^6.5.2", |
| 46 | + "babel-eslint": "^5.0.0", |
| 47 | + "babel-jest": "^6.0.1", |
| 48 | + "babel-loader": "^6.2.3", |
| 49 | + "babel-plugin-react-transform": "^2.0.0", |
| 50 | + "babel-preset-es2015": "^6.5.0", |
| 51 | + "babel-preset-react": "^6.5.0", |
| 52 | + "babel-preset-react-hmre": "^1.1.0", |
| 53 | + "babel-preset-stage-0": "^6.5.0", |
| 54 | + "css-loader": "^0.23.1", |
| 55 | + "eslint": "^2.2.0", |
| 56 | + "eslint-config-airbnb": "6.0.2", |
| 57 | + "eslint-plugin-mocha": "^2.0.0", |
| 58 | + "eslint-plugin-react": "^4.1.0", |
| 59 | + "jest-cli": "^0.8.2", |
| 60 | + "jscs": "^2.10.1", |
| 61 | + "react": "^0.14.7", |
| 62 | + "react-addons-test-utils": "^0.14.7", |
| 63 | + "react-dom": "^0.14.7", |
| 64 | + "react-transform-catch-errors": "^1.0.2", |
| 65 | + "react-transform-hmr": "^1.0.2", |
| 66 | + "redbox-react": "^1.2.2", |
| 67 | + "style-loader": "^0.13.0", |
| 68 | + "webpack": "^1.12.14", |
| 69 | + "webpack-dev-middleware": "^1.5.1", |
| 70 | + "webpack-hot-middleware": "^2.7.1" |
| 71 | + }, |
| 72 | + "jest": { |
| 73 | + "testRunner": "<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2.js", |
| 74 | + "unmockedModulePathPatterns": [ |
| 75 | + "<rootDir>/node_modules/react", |
| 76 | + "<rootDir>/node_modules/fbjs", |
| 77 | + "<rootDir>/node_modules/react-dom", |
| 78 | + "<rootDir>/node_modules/react-addons-test-utils", |
| 79 | + "../utils/helpers", |
| 80 | + "../utils/union-class-names", |
| 81 | + "../utils/is-component-of-type" |
| 82 | + ], |
| 83 | + "scriptPreprocessor": "<rootDir>/node_modules/babel-jest", |
| 84 | + "preprocessCachingDisabled": true |
| 85 | + }, |
| 86 | + "license": "MIT", |
| 87 | + "dependencies": { |
| 88 | + "classnames": "^2.2.3", |
| 89 | + "extract-text-webpack-plugin": "^1.0.1" |
| 90 | + } |
| 91 | +} |
0 commit comments