-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.36 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
{
"name": "fitr-svg-text",
"version": "1.0.6",
"description": "Fits text of any number of characters into provided dimensions and position within svg.",
"main": "dist/index.js",
"scripts": {
"start": "npm run storybook",
"storybook": "start-storybook -p 9001 -c .storybook",
"static-docs": "npm run clean-static && build-storybook -c .storybook -o docs",
"test": "echo \"Error: no test specified\" && exit 1",
"clean-dist": "rm -rf ./dist",
"clean-static": "rm -rf ./docs",
"build": "yarn run clean-dist && NODE_ENV=production `yarn bin`/babel ./src --out-dir ./dist"
},
"keywords": [
"react-component",
"fittext",
"textsize",
"svgtext",
"svg",
"react"
],
"author": "Ivan Maksimovic",
"license": "MIT",
"repository": {
"type": "git",
"url": "/~https://github.com/ivnmaksimovic/fitr-svg-text"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-info": "^5.1.11",
"@storybook/addon-knobs": "^5.1.11",
"@storybook/addons": "^5.1.11",
"@storybook/react": "^5.1.11",
"babel-loader": "^8.0.6",
"react": "^16.9.0",
"react-dom": "^16.9.0"
},
"peerDependencies": {
"react": "^0.14.9 || ^15.3.0 || ^16.0.0-rc || ^16.0",
"react-dom": "^0.14.9 || ^15.3.0 || ^16.0.0-rc || ^16.0"
},
"dependencies": {
"prop-types": "^15.7.2"
}
}