-
Notifications
You must be signed in to change notification settings - Fork 144
/
package.json
58 lines (58 loc) · 1.64 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
53
54
55
56
57
58
{
"name": "react-textfit",
"version": "1.1.1",
"description": "React component to fit headlines and paragraphs into any element",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib dist",
"build": "babel src --out-dir lib",
"lint": "eslint src test examples",
"test": "NODE_ENV=test mocha --compilers js:babel-core/register --recursive",
"test:watch": "NODE_ENV=test mocha --compilers js:babel-core/register --recursive --watch",
"prepublish": "npm run lint && npm run test && npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/malte-wessel/react-textfit.git"
},
"keywords": [
"textfit",
"fittext",
"text",
"react",
"react-component"
],
"author": "Malte Wessel",
"license": "MIT",
"bugs": {
"url": "https://github.com/malte-wessel/react-textfit/issues"
},
"homepage": "https://github.com/malte-wessel/react-textfit",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^4.1.5",
"babel-loader": "^6.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^1.9.0",
"eslint-config-airbnb": "^1.0.0",
"eslint-plugin-react": "^3.9.0",
"expect": "^1.6.0",
"mocha": "^2.2.5",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"rimraf": "^2.3.4",
"webpack": "^1.9.6",
"webpack-dev-server": "^1.8.2"
},
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0",
"react-dom": "^15.0.0 || ^16.0.0"
},
"dependencies": {
"process": "^0.11.10",
"prop-types": "^15.7.2"
}
}