react/package.json

103 lines
2.3 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.",
2015-01-14 03:35:53 +08:00
"version": "0.13.0-alpha.2",
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",
2014-10-09 08:27:59 +08:00
"license": "BSD-3-Clause",
2013-05-30 03:46:11 +08:00
"files": [
"main.js",
"bin/jsx",
"src/",
"vendor/fbtransform/"
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.10.0",
"jstransform": "^8.0.0"
2013-05-30 03:46:11 +08:00
},
"devDependencies": {
2013-12-17 13:25:05 +08:00
"benchmark": "~1.0.0",
2015-01-14 03:23:06 +08:00
"browserify": "^8.1.0",
"bundle-collapser": "^1.1.1",
"coffee-script": "^1.8.0",
2014-01-17 03:42:48 +08:00
"coverify": "~1.0.4",
2014-10-01 11:31:36 +08:00
"derequire": "^1.2.0",
"envify": "^3.0.0",
"es3ify": "~0.1.2",
"es5-shim": "^4.0.0",
"eslint": "0.11.0-alpha.0",
"grunt": "~0.4.2",
"grunt-cli": "~0.1.9",
"grunt-compare-size": "~0.4.0",
"grunt-contrib-clean": "^0.6.0",
2015-01-14 03:23:06 +08:00
"grunt-contrib-compress": "^0.13.0",
2014-01-17 03:42:48 +08:00
"grunt-contrib-connect": "~0.6.0",
"grunt-contrib-copy": "^0.7.0",
"grunt-contrib-jshint": "^0.10.0",
"gzip-js": "~0.3.2",
"jasmine-tapreporter": "~0.2.2",
"jest-cli": "^0.2.1",
"lodash": "~2.4.1",
"optimist": "~0.6.0",
2013-11-07 06:00:25 +08:00
"phantomjs": "~1.9",
"platform": "^1.1.0",
"populist": "~0.1.6",
"recast": "^0.9.11",
"sauce-tunnel": "~1.1.0",
"ts-compiler": "^2.0.0",
"tmp": "~0.0.18",
"uglify-js": "~2.4.0",
"uglifyify": "^2.4.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": "jest",
"jest": "jest",
"lint": "eslint src",
"build": "grunt build"
},
"jest": {
"rootDir": "",
"scriptPreprocessor": "jest/preprocessor.js",
"setupEnvScriptFile": "jest/environment.js",
"testFileExtensions": [
"js",
"coffee",
"ts"
],
"modulePathIgnorePatterns": [
"/build/",
"/node_modules/",
"/.module-cache/"
],
"testPathIgnorePatterns": [
"/build/",
"/node_modules/"
],
"unmockedModulePathPatterns": [
""
]
}
2013-05-30 03:46:11 +08:00
}