-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
45 lines (45 loc) · 1.49 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
{
"name": "react-native-hotspot",
"version": "0.0.6",
"description": "A React Native component that displays hotspots over desired components to help lead your users through an onboarding flow or direct them towards new UI elements",
"license": "MIT",
"author": "Michael Lefkowitz <lefkowitz.michael@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/lawnstarter/react-native-hotspot.git"
},
"main": "src/index.js",
"keywords": [
"hotspot",
"tutorial",
"onboarding",
"react",
"react-native",
"react native",
"expo"
],
"files": [
"LICENSE",
"README.md",
"src/helper.js",
"src/hotspot.js",
"src/index.js",
"src/pulse.js"
],
"devDependencies": {
"eslint-config-ls-react": "https://github.com/lawnstarter/eslint-config-ls-react#2.0.3",
"husky": "^0.14.3",
"prettier": "^1.15.3",
"pretty-quick": "^1.8.0",
"prop-types": "^15.6.2",
"react": "16.6.1",
"react-native": "0.57.7"
},
"scripts": {
"precommit": "pretty-quick --staged",
"prepush": "echo \"---Running ESLint---\" && eslint src/**",
"prettier:debug-check": "prettier --config ./.prettierrc.js --debug-check \"{src,test}/**/*.js\"",
"preprettier:all": "yarn run prettier:debug-check",
"prettier:all": "prettier --config ./.prettierrc.js --write \"{src,test}/**/*.js\""
}
}