-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
52 lines (52 loc) · 1.51 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
{
"name": "bs-material-ui",
"version": "0.4.0",
"description": "Reason bindings for material-ui",
"main": "lib/js/src/MaterialUI.js",
"keywords": [
"react",
"react-component",
"material design",
"material-ui",
"bucklescript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/InsidersByte/bs-material-ui.git"
},
"bugs": {
"url": "https://github.com/InsidersByte/bs-material-ui/issues"
},
"homepage": "https://github.com/InsidersByte/bs-material-ui#readme",
"scripts": {
"precommit": "lint-staged",
"build": "bsb -make-world",
"start": "bsb -make-world -w",
"clean": "bsb -clean-world",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "yarn run clean && yarn run build",
"format:js": "prettier --write ./*.{js,json,md} ./**/*.{js,json,md}",
"format:reason": "refmt --in-place src/*.re",
"format": "yarn format:js && yarn format:reason"
},
"author": "Jonathon Kelly <[email protected]>",
"contributors": ["Remi Bernal <[email protected]>"],
"license": "MIT",
"dependencies": {},
"devDependencies": {
"bs-platform": "3.0.0",
"husky": "0.14.3",
"lint-staged": "7.0.4",
"material-ui": "1.0.0-beta.41",
"prettier": "1.12.0",
"reason-react": "0.3.4"
},
"peerDependencies": {
"material-ui": "^1.0.0-beta.41",
"reason-react": "^0.3.0"
},
"lint-staged": {
"*.{js,json,md}": ["prettier --write", "git add"],
"src/**/*.re": ["refmt --in-place", "git add"]
}
}