-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
36 lines (36 loc) · 1.16 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
{
"name": "react-native-ruler",
"version": "0.1.0",
"description": "A devtool for measuring pixel dimensions on your React Native screens",
"license": "MIT",
"author": "Michael Lefkowitz <lefkowitz.michael@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/lfkwtz/react-native-ruler.git"
},
"main": "src/index.js",
"keywords": [
"devtools",
"measure",
"ruler",
"react",
"react-native",
"react native",
"expo"
],
"devDependencies": {
"eslint-config-ls-react": "https://github.com/lawnstarter/eslint-config-ls-react#3.0.0",
"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",
"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\""
}
}