[d565449] | 1 | {
|
---|
| 2 | "name": "react-universal-interface",
|
---|
| 3 | "version": "0.6.2",
|
---|
| 4 | "description": "Universal Children Definition for React Components",
|
---|
| 5 | "main": "lib/index.js",
|
---|
| 6 | "types": "lib/index.d.ts",
|
---|
| 7 | "typings": "lib/index.d.ts",
|
---|
| 8 | "repository": {
|
---|
| 9 | "type": "git",
|
---|
| 10 | "url": "https://github.com/streamich/react-universal-interface.git"
|
---|
| 11 | },
|
---|
| 12 | "scripts": {
|
---|
| 13 | "build": "npm run clean && tsc",
|
---|
| 14 | "clean": "rimraf lib",
|
---|
| 15 | "test": "npm run test:server && npm run test:client",
|
---|
| 16 | "test:server": "mocha -r ts-node/register src/**/*.test-server.ts*",
|
---|
| 17 | "test:client": "jest",
|
---|
| 18 | "semantic-release": "semantic-release"
|
---|
| 19 | },
|
---|
| 20 | "peerDependencies": {
|
---|
| 21 | "react": "*",
|
---|
| 22 | "tslib": "*"
|
---|
| 23 | },
|
---|
| 24 | "devDependencies": {
|
---|
| 25 | "@types/chai": "^4.1.7",
|
---|
| 26 | "@types/jest": "^24.0.11",
|
---|
| 27 | "@types/node": "^11.13.0",
|
---|
| 28 | "@types/react": "^16.8.13",
|
---|
| 29 | "@types/react-dom": "^16.8.3",
|
---|
| 30 | "chai": "^4.2.0",
|
---|
| 31 | "enzyme": "^3.9.0",
|
---|
| 32 | "enzyme-adapter-react-16": "^1.12.1",
|
---|
| 33 | "enzyme-to-json": "^3.3.5",
|
---|
| 34 | "jest": "^24.7.1",
|
---|
| 35 | "jest-environment-jsdom": "^24.7.1",
|
---|
| 36 | "jest-environment-jsdom-global": "^1.2.0",
|
---|
| 37 | "jest-tap-reporter": "^1.9.0",
|
---|
| 38 | "mocha": "^6.1.1",
|
---|
| 39 | "mol-conventional-changelog": "^1.4.0",
|
---|
| 40 | "react": "^16.8.6",
|
---|
| 41 | "react-dom": "^16.8.6",
|
---|
| 42 | "react-test-renderer": "^16.8.6",
|
---|
| 43 | "rimraf": "^2.6.3",
|
---|
| 44 | "semantic-release": "^15.13.3",
|
---|
| 45 | "ts-jest": "^24.0.2",
|
---|
| 46 | "ts-node": "^8.0.3",
|
---|
| 47 | "tslib": "^2.0.0",
|
---|
| 48 | "typescript": "^3.4.2"
|
---|
| 49 | },
|
---|
| 50 | "config": {
|
---|
| 51 | "commitizen": {
|
---|
| 52 | "path": "./node_modules/mol-conventional-changelog"
|
---|
| 53 | }
|
---|
| 54 | },
|
---|
| 55 | "jest": {
|
---|
| 56 | "moduleFileExtensions": [
|
---|
| 57 | "ts",
|
---|
| 58 | "tsx",
|
---|
| 59 | "js",
|
---|
| 60 | "jsx"
|
---|
| 61 | ],
|
---|
| 62 | "transform": {
|
---|
| 63 | "^.+\\.tsx?$": "ts-jest"
|
---|
| 64 | },
|
---|
| 65 | "transformIgnorePatterns": [],
|
---|
| 66 | "testRegex": ".*/__tests__/.*\\.(test|spec)\\.(jsx?|tsx?)$",
|
---|
| 67 | "setupFiles": [
|
---|
| 68 | "./src/__tests__/setup.js"
|
---|
| 69 | ],
|
---|
| 70 | "reporters": [
|
---|
| 71 | "jest-tap-reporter"
|
---|
| 72 | ],
|
---|
| 73 | "testEnvironment": "jest-environment-jsdom-global",
|
---|
| 74 | "testURL": "http://localhost"
|
---|
| 75 | },
|
---|
| 76 | "keywords": [
|
---|
| 77 | "react",
|
---|
| 78 | "universal",
|
---|
| 79 | "interface",
|
---|
| 80 | "children",
|
---|
| 81 | "definition",
|
---|
| 82 | "ucd",
|
---|
| 83 | "universal-children",
|
---|
| 84 | "facc",
|
---|
| 85 | "render",
|
---|
| 86 | "prop",
|
---|
| 87 | "function",
|
---|
| 88 | "child",
|
---|
| 89 | "component"
|
---|
| 90 | ]
|
---|
| 91 | }
|
---|