mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-12-19 05:19:42 +08:00
73 lines
1.6 KiB
JSON
73 lines
1.6 KiB
JSON
{
|
|
"name": "@ionic/react",
|
|
"version": "0.0.5",
|
|
"description": "React specific wrapper for @ionic/core",
|
|
"keywords": [
|
|
"ionic",
|
|
"framework",
|
|
"react",
|
|
"mobile",
|
|
"app",
|
|
"hybrid",
|
|
"webapp",
|
|
"cordova",
|
|
"progressive web app",
|
|
"pwa"
|
|
],
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/ionic-team/ionic.git"
|
|
},
|
|
"scripts": {
|
|
"build": "npm run clean && npm run compile",
|
|
"clean": "rm -rf dist",
|
|
"compile": "npm run tsc",
|
|
"deploy": "np --any-branch",
|
|
"tsc": "tsc -p .",
|
|
"test": "jest"
|
|
},
|
|
"main": "./dist/index.js",
|
|
"module": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"files": [
|
|
"dist/"
|
|
],
|
|
"devDependencies": {
|
|
"@trust/webcrypto": "^0.9.2",
|
|
"@types/jest": "23.3.9",
|
|
"@types/node": "10.12.9",
|
|
"@types/react": "16.7.6",
|
|
"@types/react-dom": "16.0.9",
|
|
"@types/react-router": "^4.4.4",
|
|
"@types/react-router-dom": "^4.3.1",
|
|
"jest": "^23.0.0",
|
|
"jest-dom": "^3.0.2",
|
|
"np": "^3.1.0",
|
|
"react": "^16.7.0",
|
|
"react-dom": "^16.7.0",
|
|
"react-router": "^4.3.1",
|
|
"react-router-dom": "^4.3.1",
|
|
"react-testing-library": "^5.5.3",
|
|
"ts-jest": "^23.10.5",
|
|
"typescript": "^3.2.2"
|
|
},
|
|
"dependencies": {
|
|
"@ionic/core": "^4.0.2"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "^16.7.0",
|
|
"react-dom": "^16.7.0",
|
|
"react-router": "^4.3.1",
|
|
"react-router-dom": "^4.3.1"
|
|
},
|
|
"jest": {
|
|
"preset": "ts-jest",
|
|
"setupTestFrameworkScriptFile": "<rootDir>/jest.setup.js",
|
|
"testPathIgnorePatterns": [
|
|
"node_modules",
|
|
"dist"
|
|
]
|
|
}
|
|
}
|