react/package.json

91 lines
2.0 KiB
JSON
Raw Normal View History

2013-05-30 03:46:11 +08:00
{
"name": "react-tools",
"description": "A set of complementary tools to React, including the JSX transformer.",
2014-03-22 05:58:52 +08:00
"version": "0.11.0-alpha",
2013-05-30 03:46:11 +08:00
"keywords": [
"react",
"jsx",
"transformer",
"view"
2013-05-30 03:46:11 +08:00
],
"homepage": "http://facebook.github.io/react",
2013-05-30 03:46:11 +08:00
"bugs": "https://github.com/facebook/react/issues",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"files": [
"README.md",
"main.js",
"bin/jsx",
"src/",
2013-05-30 03:46:11 +08:00
"vendor/fbtransform/",
"vendor/constants.js"
2013-05-30 03:46:11 +08:00
],
"main": "main.js",
"bin": {
"jsx": "./bin/jsx"
},
"repository": {
"type": "git",
"url": "https://github.com/facebook/react"
},
"dependencies": {
"commoner": "^0.9.2",
"esprima-fb": "~4001.1.0-dev-harmony-fb",
"jstransform": "~5.0.0"
2013-05-30 03:46:11 +08:00
},
"devDependencies": {
2013-12-17 13:25:05 +08:00
"benchmark": "~1.0.0",
2014-03-19 12:33:39 +08:00
"browserify": "^3.33.0",
2014-01-17 03:42:48 +08:00
"coverify": "~1.0.4",
2014-02-18 07:38:58 +08:00
"envify": "~1.2.0",
"es3ify": "~0.1.2",
2014-01-17 03:42:48 +08:00
"es5-shim": "~2.3.0",
"grunt": "~0.4.2",
"grunt-cli": "~0.1.9",
"grunt-compare-size": "~0.4.0",
"grunt-contrib-clean": "~0.5.0",
2014-01-17 03:42:48 +08:00
"grunt-contrib-compress": "~0.6.0",
"grunt-contrib-connect": "~0.6.0",
"grunt-contrib-copy": "~0.5.0",
"grunt-contrib-jshint": "~0.8.0",
"gzip-js": "~0.3.2",
"jasmine-tapreporter": "~0.2.2",
"jest-cli": "~0.1.5",
"lodash": "~2.4.1",
2013-12-17 13:25:05 +08:00
"microtime": "~0.5.1",
"optimist": "~0.6.0",
2013-11-07 06:00:25 +08:00
"phantomjs": "~1.9",
2013-12-17 13:25:05 +08:00
"platform": "~1.0.0",
"populist": "~0.1.6",
"recast": "~0.5.6",
"sauce-tunnel": "~1.1.0",
2013-12-05 13:07:16 +08:00
"semver": "~2.2.1",
"tmp": "~0.0.18",
"uglify-js": "~2.4.0",
2014-01-17 03:42:48 +08:00
"uglifyify": "~1.1.0",
"wd": "~0.2.6"
2013-05-30 03:46:11 +08:00
},
"engines": {
"node": ">=0.10.0"
},
"preferGlobal": true,
2013-12-05 05:47:13 +08:00
"commonerConfig": {
"version": 4
2014-02-21 05:10:05 +08:00
},
"scripts": {
"test": "./node_modules/.bin/grunt test"
},
"jest": {
"rootDir": "src",
"scriptPreprocessor": "../jest/preprocessor.js",
"setupEnvScriptFile": "../jest/environment.js",
"unmockedModulePathPatterns": [
""
]
}
2013-05-30 03:46:11 +08:00
}