-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.2 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
{
"name": "text-truncate-scroll",
"version": "1.3.5",
"description": "A light-weight js utility that truncates overflowing text with ellipsis, and shows the text content on hover with a scroll effect.",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "npx tsc --watch",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json"
},
"main": "./lib/index.js",
"types": "./index.d.ts",
"files": [
"/lib",
"/index.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jayli3n/text-truncate-scroll.git"
},
"keywords": [
"text",
"overflow",
"ellipsis",
"truncate",
"hover",
"scroll",
"responsive",
"responsiveness",
"html",
"css",
"react",
"vuejs",
"angular",
"svelte"
],
"author": "jayli3n",
"license": "MIT",
"bugs": {
"url": "https://github.com/jayli3n/text-truncate-scroll/issues"
},
"homepage": "https://github.com/jayli3n/text-truncate-scroll#readme",
"devDependencies": {
"prettier": "^2.8.4",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.9.5"
}
}