mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
34 lines
866 B
JSON
34 lines
866 B
JSON
{
|
|
"name": "react-addons-update",
|
|
"version": "15.6.2",
|
|
"main": "index.js",
|
|
"repository": "facebook/react",
|
|
"keywords": [
|
|
"react",
|
|
"react-addon"
|
|
],
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"fbjs": "^0.8.9",
|
|
"object-assign": "^4.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"jest": "^19.0.2",
|
|
"webpack": "^2.6.1"
|
|
},
|
|
"scripts": {
|
|
"test": "TEST_ENTRY=./index.js jest",
|
|
"build:dev": "NODE_ENV=development webpack && TEST_ENTRY=./react-addons-update.js jest",
|
|
"build:prod": "NODE_ENV=production webpack && NODE_ENV=production TEST_ENTRY=./react-addons-update.min.js jest",
|
|
"build": "npm run build:dev && npm run build:prod && node ../postbuild.js",
|
|
"prepublish": "npm test && npm run build"
|
|
},
|
|
"files": [
|
|
"LICENSE",
|
|
"README.md",
|
|
"index.js",
|
|
"react-addons-update.js",
|
|
"react-addons-update.min.js"
|
|
]
|
|
}
|