1
0
mirror of https://github.com/bobwen-dev/react-templates synced 2025-04-12 00:56:39 +02:00
react-templates/package.json
2016-09-28 18:20:11 +03:00

82 lines
2.5 KiB
JSON

{
"name": "react-templates",
"version": "0.5.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 test/src/test.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 dist && babel src/ --out-dir dist",
"all": "npm run lint && npm run test",
"prepublish": "npm run babel"
},
"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.22.0",
"css": "^2.2.1",
"escodegen": "^1.8.1",
"esprima": "^3.0.0",
"lodash": "^4.16.2",
"normalize-html-whitespace": "^0.2.0",
"optionator": "^0.8.2",
"text-table": "^0.2.0"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.14.0",
"brace": "^0.8.0",
"brfs": "^1.4.1",
"coveralls": "^2.11.14",
"eslint": "^3.6.1",
"eslint-config-wix-editor": "^0.2.3",
"eslint-plugin-lodash": "^1.10.3",
"eslint-plugin-react": "^6.3.0",
"eslint-plugin-wix-editor": "^1.1.1",
"grunt": "1.0.1",
"grunt-babel": "^6.0.0",
"grunt-browserify": "5.0.0",
"grunt-contrib-requirejs": "1.0.0",
"grunt-contrib-uglify": "^2.0.0",
"grunt-contrib-watch": "1.0.0",
"grunt-eslint": "19.0.0",
"grunt-tape": "^0.1.0",
"istanbul": "^0.4.5",
"json-loader": "^0.5.4",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-native": "^0.29.0",
"tape": "^4.6.0",
"webpack": "^1.13.2"
},
"keywords": [
"templates",
"react-templates",
"react",
"reactjs",
"react.js",
"react-component",
"react component"
]
}