react-templates/package.json

74 lines
2.3 KiB
JSON
Raw Normal View History

2014-11-10 11:55:24 +01:00
{
"name": "react-templates",
2015-12-30 10:14:17 +01:00
"version": "0.4.1",
2014-11-10 11:55:24 +01:00
"description": "Light weight templates for react -> write html get valid react code",
2015-12-29 11:00:41 +01:00
"main": "./dist/cli.js",
2014-11-16 15:22:32 +01:00
"bin": {
2014-11-30 17:51:15 +01:00
"rt": "./bin/rt.js"
2014-11-16 15:22:32 +01:00
},
2014-11-10 11:55:24 +01:00
"scripts": {
2015-11-08 11:15:34 +01:00
"build": "npm run lint && npm run test",
2015-10-06 16:18:50 +02:00
"lint": "eslint .",
2015-11-09 14:07:05 +01:00
"test": "node test/src/test.js && node test/src/styleTest.js",
2015-08-02 16:46:11 +02:00
"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",
2015-09-30 09:16:49 +02:00
"major": "npm version major -m\"update version to %s\" && git push && git push --tags",
2015-11-29 16:32:57 +01:00
"buildwp": "webpack --config webpack-production.config.js --progress --profile --colors",
"babel": "rm -rf dist && babel src/ --out-dir dist/",
2015-12-29 11:00:41 +01:00
"all": "npm run lint && npm run test && npm run babel"
2014-11-10 11:55:24 +01:00
},
"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",
2015-03-29 14:59:08 +02:00
"cheerio": "^0.19.0",
2015-09-30 09:16:49 +02:00
"css": "^2.2.1",
2015-12-29 11:00:41 +01:00
"escodegen": "1.7.1",
2015-11-22 11:22:01 +01:00
"esprima-fb": "^15001.1001.0-dev-harmony-fb",
"lodash": "^3.10.1",
2015-12-29 11:07:14 +01:00
"optionator": "^0.8.0",
"text-table": "^0.2.0"
2014-11-10 14:51:04 +01:00
},
"devDependencies": {
2015-12-29 11:00:41 +01:00
"babel-cli": "^6.3.17",
"brace": "0.7.0",
"brfs": "^1.4.1",
2015-12-29 11:00:41 +01:00
"coveralls": "2.11.6",
"eslint": "1.10.3",
2015-11-29 16:32:57 +01:00
"eslint-config-wix-editor": "^0.1.1",
2015-12-29 11:07:14 +01:00
"eslint-plugin-lodash3": "^0.5.0",
"eslint-plugin-react": "^3.13.1",
2015-10-20 17:35:17 +02:00
"eslint-plugin-wix-editor": "^1.0.1",
2014-11-18 14:53:46 +01:00
"grunt": "^0.4.5",
2015-09-30 09:16:49 +02:00
"grunt-browserify": "^4.0.0",
2014-12-25 11:13:07 +01:00
"grunt-contrib-requirejs": "^0.4.4",
2015-11-22 11:22:01 +01:00
"grunt-contrib-uglify": "^0.11.0",
"grunt-contrib-watch": "^0.6.1",
2015-10-20 17:35:17 +02:00
"grunt-eslint": "^17.3.1",
2015-11-29 16:32:57 +01:00
"grunt-tape": "0.0.2",
2015-12-29 11:00:41 +01:00
"istanbul": "0.4.1",
2015-11-12 11:26:48 +01:00
"react": "^0.14.2",
"react-dom": "^0.14.2",
2015-12-29 11:07:14 +01:00
"react-native": "^0.17.0",
"tape": "^4.4.0"
2014-12-31 10:03:07 +01:00
},
"keywords": [
"templates",
"react-templates",
"react",
"reactjs",
"react.js",
"react-component",
"react component"
]
2015-12-29 11:25:21 +01:00
}