paper-input
Version:
Paper Input React component
79 lines (78 loc) • 2.45 kB
JSON
{
"name": "paper-input",
"version": "3.0.2",
"description": "Paper Input React component",
"main": "dist/index.js",
"style": "src/index.css",
"scripts": {
"prepublish": "rm -rf dist; mkdir dist; npm run build",
"postpublish": "npm run subtree-push",
"build": "npm run build-js && npm run build-css",
"build-js": "NODE_ENV=production babel src --out-dir dist",
"build-css": "postcss --config ./cssnow.json --map -o dist/paper-input.css src/index.css",
"build-example": "npm run build-example-js && npm run build-example-css",
"build-example-js": "browserify example/index.js -t babelify -o ./example/bundle.js -dv",
"build-example-css": "postcss --config ./cssnow.json --map -o example/index.min.css example/index.css ",
"watch": "npm run watch-js & npm run watch-css",
"watch-js": "watchify ./example/index.js -t babelify -o ./example/bundle.js -dv",
"watch-css": "nodemon -e css -w ./src/ --exec 'npm run build-css'",
"test": "mocha --compilers js:babel-register",
"subtree-push": "git subtree push --prefix example origin gh-pages"
},
"babel": {
"presets": [
"es2015",
"react"
]
},
"eslintConfig": {
"extends": "scienceai"
},
"repository": {
"type": "git",
"url": "https://github.com/scienceai/paper-input.git"
},
"keywords": [
"Material UI",
"Material Design",
"Material Design Lite",
"react",
"Paper"
],
"author": "Chris Callahan <chris@standardanalytics.io>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/scienceai/paper-input/issues"
},
"homepage": "https://github.com/scienceai/paper-input",
"dependencies": {
"classnames": "2.2.5"
},
"peerDependencies": {
"react": ">= 15.0.0",
"react-dom": ">= 15.0.0"
},
"devDependencies": {
"babel-cli": "6.11.4",
"babel-preset-es2015": "6.13.2",
"babel-preset-react": "6.11.1",
"babel-register": "6.11.6",
"babelify": "7.3.0",
"postcss": "5.2.4",
"postcss-browser-reporter": "0.5.0",
"postcss-cli": "2.6.0",
"postcss-cssnext": "2.8.0",
"cssnano": "3.7.7",
"postcss-import": "8.1.2",
"postcss-reporter": "1.4.1",
"postcss-url": "5.1.2",
"eslint-config-scienceai": "1.4.2",
"jsdom": "9.4.1",
"mocha": "3.0.2",
"nodemon": "1.10.0",
"react": "15.3.0",
"react-addons-test-utils": "15.3.0",
"react-dom": "15.3.0",
"watchify": "3.7.0"
}
}