-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
72 lines (72 loc) · 1.66 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": "osmicsx",
"version": "1.1.3",
"description": "An utility style framework for React Native.",
"type": "module",
"license": "MIT",
"main": "src/index.ts",
"repository": "https://github.com/OsmiCSX/osmicsx.git",
"bugs": "https://github.com/OsmiCSX/osmicsx/issues",
"contributors": [
"Rully Ardiansyah <[email protected]>",
"Ryan Aunur Rassyid <[email protected]>",
"Ambrizal Suryadinata <[email protected]>"
],
"keywords": [
"style",
"react-native",
"framework",
"framework",
"javascript"
],
"scripts": {
"build": "rm -rf dist && tsc",
"test": "jest --coverage"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/node": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@types/node": "^14.14.14",
"@types/react": "^18.0.0",
"@types/react-native": "^0.68.2",
"jest": "^25.4.0",
"prettier": "^2.2.1",
"react": "^18.0.0",
"react-native": "^0.68.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.1.3"
},
"resolutions": {
"@types/react": "^18.x.x",
"@types/react-native": "^0.68.x"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "8.9.0"
}
},
"@babel/preset-typescript"
]
]
},
"jest": {
"preset": "react-native",
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/react-native/jest/preprocessor.js"
},
"testEnvironment": "node"
},
"engines": {
"node": ">=8.9.0"
},
"peerDependencies": {
"@types/react": ">=18.0.0",
"@types/react-native": ">=0.68.0"
}
}