-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.25 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
{
"name": "react-native-secure-clipboard",
"version": "0.1.2",
"description": "Copy sensitive data to the clipboard without making it available to other devices",
"author": "Rajiv Shah <rajivshah1@icloud.com>",
"license": "MIT",
"homepage": "https://github.com/rajivshah3/react-native-secure-clipboard",
"bugs": "https://github.com/rajivshah3/react-native-secure-clipboard/issues",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write \"**/*.{js,json}\"",
"lint": "./node_modules/.bin/eslint .",
"precommit": "lint-staged",
"version": "auto-changelog -p"
},
"lint-staged": {
"*.{js,json}": [
"prettier --write",
"git add"
]
},
"keywords": [
"react-native",
"clipboard",
"handoff"
],
"peerDependencies": {
"react-native": "^0.48.0"
},
"devDependencies": {
"babel-eslint": "10.0.3",
"eslint": "5.16.0",
"eslint-config-airbnb-base": "14.0.0",
"eslint-config-prettier": "6.9.0",
"eslint-plugin-babel": "5.3.0",
"eslint-plugin-import": "2.19.1",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-react-native": "3.8.1",
"husky": "3.1.0",
"lint-staged": "9.5.0",
"prettier": "1.19.1"
}
}