reactxp/package.json

47 строки
1.4 KiB
JSON
Исходник Обычный вид История

2017-04-06 03:51:05 +03:00
{
"name": "reactxp",
"version": "2.0.0",
2017-04-06 03:51:05 +03:00
"description": "Cross-platform abstraction layer for writing React-based applications a single time that work identically across web, React Native, and Electron distribution",
"author": "ReactXP Team <reactxp@microsoft.com>",
2017-04-06 03:51:05 +03:00
"license": "MIT",
"scripts": {
"build": "npm run tslint && tsc",
"build-release": "npm run tslint-release && tsc",
"watch": "npm run tslint && tsc --watch",
2019-07-12 23:58:42 +03:00
"tslint": "tslint --project tsconfig.json -r tslint.json --fix || true",
"tslint-release": "tslint --project tsconfig.json -r tslint.json"
2017-04-06 03:51:05 +03:00
},
"dependencies": {
2019-07-27 19:29:05 +03:00
"lodash": "^4.17.15",
2019-02-17 21:59:07 +03:00
"prop-types": "^15.7.2",
"rebound": "^0.1.0",
"subscribableevent": "^1.0.1"
},
"peerDependencies": {
"react": "^16.3",
"react-dom": "^16.3",
"react-native": ">=0.57",
"react-native-windows": "^0.57.1"
2017-04-06 03:51:05 +03:00
},
"devDependencies": {
"@types/lodash": "^4.14.147",
2019-11-03 03:02:42 +03:00
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.4",
"@types/react-native": "^0.60.22",
"tslint": "^5.20.1",
2019-07-12 23:58:42 +03:00
"tslint-microsoft-contrib": "^6.2.0",
2019-11-03 03:02:42 +03:00
"tslint-react": "^4.1.0",
"tsutils": "^3.17.1",
"typescript": "^3.7.2"
2017-04-06 03:51:05 +03:00
},
"homepage": "https://microsoft.github.io/reactxp/",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/reactxp/"
},
"bugs": {
"url": "https://github.com/microsoft/reactxp/issues"
},
2017-04-06 03:51:05 +03:00
"types": "dist/ReactXP.d.ts"
}