72 lines
2.2 KiB
JSON
72 lines
2.2 KiB
JSON
{
|
|
"name": "react-templates",
|
|
"version": "0.3.1",
|
|
"description": "Light weight templates for react -> write html get valid react code",
|
|
"main": "./src/cli.js",
|
|
"bin": {
|
|
"rt": "./bin/rt.js"
|
|
},
|
|
"scripts": {
|
|
"prepublish": "npm run build",
|
|
"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"
|
|
},
|
|
"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.1",
|
|
"cheerio": "^0.19.0",
|
|
"css": "^2.2.1",
|
|
"escodegen": "^1.7.0",
|
|
"esprima-harmony": "^7001.1.0-dev-harmony-fb",
|
|
"lodash": "^3.10.1",
|
|
"optionator": "^0.6.0",
|
|
"text-table": "^0.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"brace": "^0.5.1",
|
|
"brfs": "^1.4.1",
|
|
"coveralls": "^2.11.4",
|
|
"eslint": "^1.9.0",
|
|
"eslint-config-wix-editor": "0.0.1",
|
|
"eslint-plugin-lodash3": "^0.1.13",
|
|
"eslint-plugin-react": "^3.6.3",
|
|
"eslint-plugin-wix-editor": "^1.0.1",
|
|
"grunt": "^0.4.5",
|
|
"grunt-browserify": "^4.0.0",
|
|
"grunt-contrib-requirejs": "^0.4.4",
|
|
"grunt-contrib-uglify": "^0.10.0",
|
|
"grunt-contrib-watch": "^0.6.1",
|
|
"grunt-eslint": "^17.3.1",
|
|
"grunt-node-tap": "^0.1.61",
|
|
"istanbul": "^0.4.0",
|
|
"react": "^0.12.2",
|
|
"react-native": "^0.11.4",
|
|
"react-templates": "^0.1.22",
|
|
"tape": "^4.2.1"
|
|
},
|
|
"keywords": [
|
|
"templates",
|
|
"react-templates",
|
|
"react",
|
|
"reactjs",
|
|
"react.js",
|
|
"react-component",
|
|
"react component"
|
|
]
|
|
}
|