-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 1.12 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
{
"name": "react-native-shapes",
"version": "0.1.0",
"description": "A collection of simple shapes built with CSS for use as icons, buttons, graphics, etc..",
"license": "MIT",
"author": "Michael Lefkowitz <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/lfkwtz/react-native-shapes.git"
},
"main": "src/index.js",
"keywords": [
"shapes",
"icons",
"css",
"react",
"react-native",
"react native",
"expo"
],
"devDependencies": {
"eslint-config-ls-react": "https://github.com/lawnstarter/eslint-config-ls-react#2.0.3",
"husky": "^0.14.3",
"prettier": "^1.16.1",
"pretty-quick": "^1.10.0",
"prop-types": "^15.6.2"
},
"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\""
}
}