react/package.json

81 lines
2.1 KiB
JSON
Raw Normal View History

2013-05-30 03:46:11 +08:00
{
"name": "react-build",
"private": true,
"version": "0.15.0-alpha",
2013-05-30 03:46:11 +08:00
"devDependencies": {
"babel": "^5.8.3",
"babel-eslint": "4.1.3",
2015-06-27 09:37:15 +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",
"del": "^1.2.0",
2015-03-09 11:43:47 +08:00
"derequire": "^2.0.0",
"envify": "^3.0.0",
"eslint": "1.7.3",
"eslint-plugin-react": "3.6.3",
"eslint-plugin-react-internal": "file:eslint-rules",
2015-10-17 07:10:06 +08:00
"fbjs": "^0.4.0",
2015-09-01 08:17:30 +08:00
"fbjs-scripts": "^0.2.0",
2015-06-27 09:37:15 +08:00
"grunt": "^0.4.5",
"grunt-cli": "^0.1.13",
2015-06-27 09:37:15 +08:00
"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",
"gulp": "^3.9.0",
"gulp-babel": "^5.1.0",
"gulp-flatten": "^0.1.0",
"gulp-util": "^3.0.5",
"gzip-js": "~0.3.2",
2015-08-19 14:40:32 +08:00
"jest-cli": "^0.5.7",
"jstransform": "^11.0.0",
"object-assign": "^3.0.0",
2015-06-27 09:37:15 +08:00
"optimist": "^0.6.1",
"platform": "^1.1.0",
"run-sequence": "^1.1.0",
"through2": "^2.0.0",
"tmp": "~0.0.18",
2015-07-24 03:49:21 +08:00
"typescript": "~1.4.0",
2015-06-27 09:37:15 +08:00
"uglify-js": "^2.4.23",
"uglifyify": "^3.0.1"
2013-05-30 03:46:11 +08:00
},
"devEngines": {
2015-08-19 14:40:32 +08:00
"node": "4.x",
2015-10-13 16:06:48 +08:00
"npm": "2.x || 3.x"
},
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": {
"build": "grunt build",
"linc": "git diff --name-only --diff-filter=ACMRTUB `git merge-base HEAD master` | grep '\\.js$' | xargs eslint --",
"lint": "grunt lint",
2015-09-01 08:17:30 +08:00
"postinstall": "node node_modules/fbjs-scripts/node/check-dev-engines.js package.json",
"test": "jest"
},
"jest": {
"modulePathIgnorePatterns": [
"/.module-cache/",
"/react/build/"
],
"persistModuleRegistryBetweenSpecs": true,
"rootDir": "",
"scriptPreprocessor": "scripts/jest/preprocessor.js",
"setupEnvScriptFile": "scripts/jest/environment.js",
"setupTestFrameworkScriptFile": "scripts/jest/test-framework-setup.js",
"testFileExtensions": [
"coffee",
"js",
"ts"
],
"testPathDirs": [
"<rootDir>/eslint-rules",
"<rootDir>/src",
"node_modules/fbjs"
],
"unmockedModulePathPatterns": [
""
]
}
2013-05-30 03:46:11 +08:00
}