-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
72 lines (72 loc) · 2.17 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": "react-native-floating-action-menu",
"version": "2.0.0",
"description": "https://github.com/nicotroia/react-native-floating-action-menu.git",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "npm run watch",
"build": "rimraf ./dist && tsc && tsc-alias && cp ./package.json ./dist/package.json && cp -r ./src/**/*.d.ts ./dist/",
"lint": "eslint ./src",
"lint:fix": "eslint --fix ./src",
"example": "cd example/ && npm install && npm start",
"prepack": "npm run build",
"prepublish": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nicotroia/react-native-floating-action-menu.git"
},
"files": [
"dist/**/*"
],
"keywords": [
"react-native",
"javascript",
"typescript",
"ios",
"android",
"google",
"material",
"design"
],
"author": "Nico Troia",
"license": "MIT",
"bugs": {
"url": "https://github.com/nicotroia/react-native-floating-action-menu/issues"
},
"homepage": "https://github.com/nicotroia/react-native-floating-action-menu#readme",
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/plugin-transform-react-jsx": "^7.9.4",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^18.11.9",
"@types/react": "^18.2.48",
"@types/react-native": "^0.73.0",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"babel-eslint": "^10.1.0",
"babel-plugin-root-import": "^6.5.0",
"babel-preset-react": "^6.24.1",
"eslint": "^7.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "7.28.0",
"eslint-plugin-unused-imports": "^3.0.0",
"metro-react-native-babel-preset": "^0.59.0",
"prettier": "^3.0.1",
"rimraf": "^3.0.2",
"tsc-alias": "^1.8.8",
"typescript": "^5.3.3"
}
}