-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.45 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": "react-tailor",
"version": "0.3.1",
"description": "Adjust text size to fit its container.",
"license": "MIT",
"main": "lib/index.js",
"module": "es/index.js",
"files": ["css", "es", "lib", "umd"],
"scripts": {
"build": "nwb build-react-component",
"clean": "nwb clean-module && nwb clean-demo",
"flow": "flow",
"precommit": "lint-staged",
"start": "nwb serve-react-demo",
"test:coverage": "nwb test-react --coverage",
"test:watch": "nwb test-react --server",
"test": "nwb test-react"
},
"lint-staged": {
"*.{js,json,css,md}": ["prettier --write", "git add"]
},
"dependencies": {
"react-measure": "^2.0.2"
},
"peerDependencies": {
"react": "16.x",
"react-dom": "16.x"
},
"devDependencies": {
"flow-bin": "^0.69.0",
"glamor": "^2.20.40",
"husky": "^0.14.3",
"lint-staged": "^7.0.2",
"nwb": "0.21.x",
"prettier": "^1.11.1",
"react": "^16.3.0",
"react-dom": "^16.3.0",
"react-markdown": "^3.3.0",
"typography": "^0.16.6",
"typography-theme-us-web-design-standards": "^0.16.9"
},
"author": "Chris Drackett <[email protected]>",
"homepage": "https://github.com/chrisdrackett/react-tailor",
"repository": {
"type": "git",
"url": "https://github.com/chrisdrackett/react-tailor"
},
"bugs": {
"url": "https://github.com/chrisdrackett/react-tailor/issues"
},
"keywords": ["react-component", "textfit", "fittext", "resize", "text"]
}