-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.18 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
{
"name": "clamp.ts",
"version": "1.1.1",
"description": "TypeScript fork of clamp.js - Clamps an HTML element by adding ellipsis to it if the content inside is too long.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aamir1995/clamp.ts.git"
},
"keywords": [
"clamp.js",
"clamp",
"clampjs",
"clamp.ts",
"text-clamp",
"html-clamp"
],
"author": "Aamir Shah",
"license": "ISC",
"bugs": {
"url": "https://github.com/aamir1995/clamp.ts/issues"
},
"homepage": "https://github.com/aamir1995/clamp.ts#readme",
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"semantic-release": "^19.0.2",
"typescript": "^4.5.5"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/github",
"@semantic-release/npm",
"@semantic-release/git"
]
}
}