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-05-28 07:47:35 +08:00
"version": "0.14.0-alpha3",
2013-05-30 03:46:11 +08:00
"keywords": [
"react",
"jsx",
"transformer",
"view"
2013-05-30 03:46:11 +08:00
],
"homepage": "https://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/"
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": "^11.0.0"
2013-05-30 03:46:11 +08:00
},
"devDependencies": {
"babel": "^5.5.5",
"babel-eslint": "^3.1.14",
2013-12-17 13:25:05 +08:00
"benchmark": "~1.0.0",
2015-02-23 04:58:41 +08:00
"browserify": "^9.0.3",
"bundle-collapser": "^1.1.1",
"coffee-script": "^1.8.0",
2014-01-17 03:42:48 +08:00
"coverify": "~1.0.4",
2015-03-09 11:43:47 +08:00
"derequire": "^2.0.0",
"envify": "^3.0.0",
"es5-shim": "^4.0.0",
"eslint": "^0.22.1",
"eslint-plugin-react": "^2.5.0",
"eslint-plugin-react-internal": "file:eslint-rules",
"eslint-tester": "^0.7.0",
"grunt": "~0.4.2",
"grunt-cli": "^0.1.13",
"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-jest": "^0.1.2",
"gzip-js": "~0.3.2",
"jasmine-tapreporter": "~0.2.2",
2015-06-12 02:01:00 +08:00
"jest-cli": "^0.4.11",
"optimist": "~0.6.0",
2013-11-07 06:00:25 +08:00
"phantomjs": "~1.9",
"platform": "^1.1.0",
"populist": "~0.1.6",
"sauce-tunnel": "~1.1.0",
"tmp": "~0.0.18",
"typescript": "^1.4.0",
"uglify-js": "^2.4.20",
2015-02-23 04:58:41 +08:00
"uglifyify": "^3.0.1",
"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": {
2015-05-22 10:08:18 +08:00
"version": 7
2014-02-21 05:10:05 +08:00
},
"scripts": {
"test": "jest",
"jest": "jest",
2015-06-05 04:20:42 +08:00
"lint": "grunt lint",
"build": "grunt build"
},
"jest": {
"rootDir": "",
"scriptPreprocessor": "jest/preprocessor.js",
"setupEnvScriptFile": "jest/environment.js",
"persistModuleRegistryBetweenSpecs": true,
"testFileExtensions": [
"js",
"coffee",
"ts"
],
"modulePathIgnorePatterns": [
"/build/",
"/node_modules/",
"/.module-cache/"
],
"testPathDirs": [
"<rootDir>/src"
],
"unmockedModulePathPatterns": [
""
]
}
2013-05-30 03:46:11 +08:00
}