UNPKG

2.07 kBJSONView Raw
1{
2 "name": "@ionic/react",
3 "version": "4.11.11",
4 "description": "React specific wrapper for @ionic/core",
5 "keywords": [
6 "ionic",
7 "framework",
8 "react",
9 "mobile",
10 "app",
11 "hybrid",
12 "webapp",
13 "cordova",
14 "progressive web app",
15 "pwa"
16 ],
17 "license": "MIT",
18 "repository": {
19 "type": "git",
20 "url": "https://github.com/ionic-team/ionic.git"
21 },
22 "scripts": {
23 "build": "npm run clean && npm run copy && npm run compile",
24 "clean": "rm -rf dist && rm -rf dist-transpiled",
25 "compile": "npm run tsc && rollup -c",
26 "release": "np --any-branch --yolo --no-release-draft",
27 "lint": "tslint --project .",
28 "lint.fix": "tslint --project . --fix",
29 "tsc": "tsc -p .",
30 "copy": "node scripts/copy.js",
31 "test.spec": "jest --ci",
32 "test.treeshake": "node scripts/treeshaking.js dist/index.esm.js"
33 },
34 "main": "dist/index.js",
35 "module": "dist/index.esm.js",
36 "types": "dist/types/index.d.ts",
37 "files": [
38 "dist/",
39 "css/"
40 ],
41 "dependencies": {
42 "@ionic/core": "4.11.11",
43 "tslib": "*"
44 },
45 "peerDependencies": {
46 "react": "^16.8.6",
47 "react-dom": "^16.8.6"
48 },
49 "devDependencies": {
50 "@types/jest": "^23.3.9",
51 "@types/node": "^12.12.14",
52 "@types/react": "^16.9.2",
53 "@types/react-dom": "^16.9.0",
54 "fs-extra": "^8.1.0",
55 "jest": "^24.8.0",
56 "jest-dom": "^3.4.0",
57 "np": "^5.0.1",
58 "react": "^16.9.0",
59 "react-dom": "^16.9.0",
60 "react-testing-library": "^7.0.0",
61 "rollup": "^1.18.0",
62 "rollup-plugin-node-resolve": "^5.2.0",
63 "rollup-plugin-sourcemaps": "^0.4.2",
64 "rollup-plugin-virtual": "^1.0.1",
65 "ts-jest": "^24.0.2",
66 "tslint": "^5.18.0",
67 "tslint-ionic-rules": "0.0.21",
68 "tslint-react": "^4.0.0",
69 "typescript": "^3.7.2"
70 },
71 "jest": {
72 "preset": "ts-jest",
73 "setupFilesAfterEnv": [
74 "<rootDir>/jest.setup.js"
75 ],
76 "testPathIgnorePatterns": [
77 "node_modules",
78 "dist-transpiled",
79 "dist",
80 "test-app"
81 ],
82 "modulePaths": [
83 "<rootDir>"
84 ]
85 }
86}