-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.59 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.59 KB
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
{
"name": "@popp0102/nova",
"version": "0.12.4",
"description": "React Native component library",
"main": "lib/index.js",
"module": "lib/index.js",
"react-native": "lib/index.js",
"sideEffects": false,
"files": [
"lib"
],
"keywords": [
"react-native",
"components",
"ui"
],
"repository": {
"type": "git",
"url": "https://github.com/popp0102/nova.git"
},
"author": "popp0102",
"license": "MIT",
"scripts": {
"lint": "eslint .",
"test": "jest",
"coverage": "jest --coverage --collectCoverageFrom='lib/**/*.{js,jsx}'",
"observatory": "npm run --prefix observatory start",
"observatory:ios": "npm run --prefix observatory ios",
"observatory:android": "npm run --prefix observatory android",
"prepublishOnly": "npm run lint && npm run test"
},
"peerDependencies": {
"@expo/vector-icons": ">=15.0.0",
"expo-linear-gradient": ">=15.0.0",
"react": ">=19.0.0",
"react-native": ">=0.81.0",
"react-native-safe-area-context": ">=5.0.0"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/plugin-transform-flow-strip-types": "^7.27.1",
"@babel/preset-env": "^7.24.0",
"@babel/preset-flow": "^7.27.1",
"@babel/preset-react": "^7.24.0",
"@testing-library/react-native": "^12.4.3",
"babel-plugin-module-resolver": "^5.0.2",
"babel-plugin-syntax-hermes-parser": "^0.33.3",
"eslint": "^8.57.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^4.6.2",
"jest": "^29.7.0",
"react": "^19.1.0",
"react-native": "^0.81.0",
"react-test-renderer": "^19.1.0"
}
}