-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.91 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@strg/react-snip",
"version": "0.2.1",
"author": "STRG.",
"description": "React component to clamp text to a specified number of lines.",
"license": "MIT",
"scripts": {
"build": "rollup -c",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"lint:fix": "eslint 'src/**/*.{ts,tsx}' --fix",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"prepare": "npm run build"
},
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"devDependencies": {
"@juggle/resize-observer": "^3.2.0",
"@storybook/addon-actions": "^6.1.18",
"@storybook/addon-essentials": "^6.1.18",
"@storybook/addon-links": "^6.1.18",
"@storybook/react": "^6.1.18",
"@types/node": "^14.14.28",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"@types/resize-observer-browser": "^0.1.5",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"eslint": "^7.20.0",
"eslint-plugin-react-hooks": "^4.2.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"rollup": "^2.39.0",
"rollup-plugin-dts": "^2.0.1",
"rollup-plugin-typescript2": "^0.30.0",
"rollup-plugin-uglify": "^6.0.4",
"typescript": "^4.1.5",
"webpack": "^4.44.1"
},
"contributors": [
"Andrej Bilec <[email protected]>",
"Ralf Traunsteiner <[email protected]>"
],
"maintainers": [
"Andrej Bilec <[email protected]>"
],
"homepage": "https://github.com/strg-at/react-snip",
"repository": {
"type": "git",
"url": "https://github.com/strg-at/react-snip"
},
"bugs": {
"url": "https://github.com/strg-at/react-snip/issues"
},
"keywords": [
"clamp",
"ellipsis",
"snip",
"snip-text",
"cut-text",
"clamp-text",
"truncate-text",
"multiline-text",
"react",
"react-js",
"react-component"
]
}