-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
72 lines (72 loc) · 1.51 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@cala/react-portal",
"version": "0.1.3",
"description": "Portal your react components without the DOM.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "bin/test",
"prepublishOnly": "bin/test && bin/build"
},
"repository": {
"type": "git",
"url": "git@github.com:ca-la/react-portal.git"
},
"author": "CALA <devops@ca.la>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ca-la/react-portal/issues"
},
"homepage": "https://github.com/ca-la/react-portal#readme",
"peerDependencies": {
"react": "^16.8.5"
},
"keywords": [
"React",
"TypeScript",
"react-portal",
"react-native-portal",
"portal",
"react-pixi"
],
"devDependencies": {
"@testing-library/react": "^9.1.4",
"@types/jest": "^24.0.18",
"@types/react": "^16.9.2",
"jest": "^24.9.0",
"prettier": "^2.0.5",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"ts-jest": "^24.0.2",
"ts-node": "^7.0.1",
"tslib": "^1.9.3",
"typescript": "^3.5.2"
},
"publishConfig": {
"access": "public"
},
"jest": {
"preset": "ts-jest",
"collectCoverageFrom": [
"**/*.{ts,tsx}",
"!**/node_modules/**",
"!**/*.d.ts"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testEnvironment": "jsdom",
"testRegex": "spec\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
},
"dependencies": {}
}