Files
react/package.json

98 lines
2.3 KiB
JSON
Raw Normal View History

2013-05-29 12:46:11 -07:00
{
"name": "react-tools",
"description": "A set of complementary tools to React, including the JSX transformer.",
2015-07-03 10:28:21 +02:00
"version": "0.14.0-beta1",
2013-05-29 12:46:11 -07:00
"keywords": [
"jsx",
"react",
"transformer",
"view"
2013-05-29 12:46:11 -07:00
],
"homepage": "https://facebook.github.io/react",
2013-05-29 12:46:11 -07:00
"bugs": "https://github.com/facebook/react/issues",
2014-10-08 17:27:59 -07:00
"license": "BSD-3-Clause",
2013-05-29 12:46:11 -07:00
"files": [
"bin/jsx",
"main.js",
"src/"
2013-05-29 12:46:11 -07: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-29 12:46:11 -07:00
},
"devDependencies": {
"babel": "^5.8.3",
"babel-eslint": "^3.1.25",
2015-06-26 18:37:15 -07:00
"benchmark": "^1.0.0",
2015-02-22 12:58:41 -08:00
"browserify": "^9.0.3",
"bundle-collapser": "^1.1.1",
"coffee-script": "^1.8.0",
2015-03-08 23:43:47 -04:00
"derequire": "^2.0.0",
"envify": "^3.0.0",
2015-07-20 08:37:47 -07:00
"eslint": "^0.24.1",
"eslint-plugin-react": "^2.5.0",
"eslint-plugin-react-internal": "file:eslint-rules",
"eslint-tester": "^0.7.0",
2015-06-26 18:37:15 -07:00
"grunt": "^0.4.5",
"grunt-cli": "^0.1.13",
2015-06-26 18:37:15 -07:00
"grunt-compare-size": "^0.4.0",
"grunt-contrib-clean": "^0.6.0",
2015-01-13 11:23:06 -08:00
"grunt-contrib-compress": "^0.13.0",
2015-06-26 18:37:15 -07:00
"grunt-jest": "^0.1.3",
"gzip-js": "~0.3.2",
2015-06-26 18:37:15 -07:00
"jest-cli": "^0.4.13",
"object-assign": "^3.0.0",
2015-06-26 18:37:15 -07:00
"optimist": "^0.6.1",
"platform": "^1.1.0",
"tmp": "~0.0.18",
"typescript": "^1.4.0",
2015-06-26 18:37:15 -07:00
"uglify-js": "^2.4.23",
"uglifyify": "^3.0.1"
2013-05-29 12:46:11 -07:00
},
"engines": {
"node": ">=0.10.0"
},
"preferGlobal": true,
2013-12-04 16:47:13 -05:00
"commonerConfig": {
2015-05-21 19:08:18 -07:00
"version": 7
2014-02-20 13:10:05 -08:00
},
"scripts": {
"build": "grunt build",
"jest": "jest",
"linc": "git diff --name-only --diff-filter=ACMRTUB `git merge-base HEAD master` | grep '\\.js$' | xargs eslint --",
"lint": "grunt lint",
"test": "jest"
},
"jest": {
"modulePathIgnorePatterns": [
"/.module-cache/",
"/node_modules/",
"/react/build/"
],
"persistModuleRegistryBetweenSpecs": true,
"rootDir": "",
"scriptPreprocessor": "jest/preprocessor.js",
"setupEnvScriptFile": "jest/environment.js",
"testFileExtensions": [
"coffee",
"js",
"ts"
],
"testPathDirs": [
"<rootDir>/eslint-rules",
"<rootDir>/src"
],
"unmockedModulePathPatterns": [
""
]
}
2013-05-29 12:46:11 -07:00
}