react-templates/package.json

82 lines
2.7 KiB
JSON

{
"name": "react-templates",
"version": "0.4.3",
"description": "Light weight templates for react -> write html get valid react code",
"main": "./dist/cli.js",
"bin": {
"rt": "./bin/rt.js"
},
"scripts": {
"build": "npm run lint && npm run test",
"lint": "eslint .",
"test": "node dist-test/src/test.js && node dist-test/src/styleTest.js",
"testd": "node test/src/test.js && node test/src/styleTest.js",
"test-cov": "istanbul cover test/src/test.js -- --require test/support/env --reporter dot --check-leaks test/ test/acceptance/",
"patch": "npm version patch -m\"update version to %s\" && git push && git push --tags",
"minor": "npm version minor -m\"update version to %s\" && git push && git push --tags",
"major": "npm version major -m\"update version to %s\" && git push && git push --tags",
"buildwp": "webpack --config webpack-production.config.js --progress --profile --colors",
"babel": "rm -rf build && babel src/ --out-dir dist && babel test/src/ --out-dir dist-test/src && cp -R test/data dist-test/data",
"babel2": "rm -rf build && babel src/ --out-dir build/src && babel test/src/ --out-dir build/test/src && cp -R test/data build/test/data && cp package.json build/",
"all": "npm run lint && npm run babel && npm run test"
},
"repository": {
"type": "git",
"url": "git://github.com/wix/react-templates.git"
},
"author": "Avi Marcus",
"license": "MIT",
"bugs": {
"url": "https://github.com/wix/react-templates/issues"
},
"homepage": "https://github.com/wix/react-templates",
"dependencies": {
"chalk": "^1.1.3",
"cheerio": "^0.20.0",
"css": "^2.2.1",
"escodegen": "^1.8.0",
"esprima": "^2.7.1",
"lodash": "^4.11.1",
"optionator": "^0.8.0",
"text-table": "^0.2.0"
},
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-core": "^6.7.6",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"brace": "^0.8.0",
"brfs": "^1.4.1",
"coveralls": "^2.11.9",
"eslint": "^2.8.0",
"eslint-config-wix-editor": "^0.2.3",
"eslint-plugin-lodash": "^1.6.5",
"eslint-plugin-react": "^4.3.0",
"eslint-plugin-wix-editor": "^1.1.1",
"grunt": "^0.4.5",
"grunt-babel": "^6.0.0",
"grunt-browserify": "^4.0.0",
"grunt-contrib-requirejs": "^0.4.4",
"grunt-contrib-uglify": "^0.11.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-eslint": "^18.1.0",
"grunt-tape": "0.0.2",
"istanbul": "^0.4.3",
"json-loader": "^0.5.4",
"react": "^0.14.2",
"react-dom": "^0.14.2",
"react-native": "^0.23.1",
"tape": "^4.5.1",
"webpack": "^1.13.0"
},
"keywords": [
"templates",
"react-templates",
"react",
"reactjs",
"react.js",
"react-component",
"react component"
]
}