-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 921 Bytes
/
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
{
"name": "eripusisu",
"version": "1.3.1",
"description": "Text truncation library",
"homepage": "https://github.com/tsmd/eripusisu#readme",
"bugs": "https://github.com/tsmd/eripusisu/issues",
"license": "MIT",
"author": "Takayuki Shimada",
"files": [
"dist"
],
"main": "dist/eripusisu.js",
"browser": "dist/eripusisu.umd.js",
"repository": "tsmd/eripusisu",
"scripts": {
"build:umd": "rollup --config rollup.config.js",
"build:esm": "tsc --project tsconfig.esm.json",
"build": "npm run-script build:umd && npm run-script build:esm",
"prepublishOnly": "npm run-script build"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.0",
"prettier": "^2.5.1",
"rollup": "^2.64.0",
"tslib": "^2.3.1",
"typescript": "^4.5.4"
},
"keywords": [
"text",
"truncate",
"ellipsis",
"line",
"range",
"float",
"inline-block"
]
}