react-suitcssify
Version:
A React component utility to generate CSS class names that conform to SUIT CSS naming conventions.
67 lines (66 loc) • 2.02 kB
JSON
{
"name": "react-suitcssify",
"version": "3.3.0",
"description": "A React component utility to generate CSS class names that conform to SUIT CSS naming conventions.",
"main": "./dist/index.js",
"scripts": {
"clean": "rm -rf ./dist/**",
"build": "npm run clean && $(npm bin)/babel ./index.js --source-maps --out-dir ./dist && $(npm bin)/babel ./lib --source-maps --out-dir ./dist/lib",
"demo": "$(npm bin)/browserify ./demo/demo.js -t babelify -o ./dist/demo.js && open ./demo/index.html",
"lint": "$(npm bin)/eslint .",
"pack-ls": "npm pack && tar -tzvf react-suitcssify*.tgz && rm react-suitcssify*.tgz",
"prepublish": "npm run build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/RallySoftware/react-suitcssify.git"
},
"keywords": [
"react",
"react-component",
"suitcss",
"suit",
"css",
"BEM"
],
"author": "CA Technologies",
"license": "MIT",
"bugs": {
"url": "https://github.com/RallySoftware/react-suitcssify/issues"
},
"homepage": "https://github.com/RallySoftware/react-suitcssify",
"devDependencies": {
"babel-cli": "6.9.0",
"babel-core": "6.9.1",
"babel-eslint": "6.0.4",
"babel-jest": "12.1.0",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-preset-es2015": "6.9.0",
"babel-preset-react": "6.5.0",
"babel-preset-stage-1": "6.5.0",
"babel-register": "6.9.0",
"babel-runtime": "6.9.2",
"babelify": "7.3.0",
"browserify": "13.0.1",
"classnames": "^2.1.1",
"create-react-class": "^15.6.2",
"eslint": "^1.6.0",
"eslint-plugin-react": "^3.5.1",
"jest": "12.1.1",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-addons-test-utils": "^15.5.0",
"react-dom": "^16.0.0"
},
"peerDependencies": {
"react": ">=0.14.0"
},
"jest": {
"automock": false,
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/classnames"
]
}
}