-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
62 lines (62 loc) · 1.45 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
{
"name": "tweet-to-html",
"version": "2.0.0",
"description": "Browser friendly package that converts twitter's API tweet objects text property to HTML. Takes care of all the entities and its links. Handles emoji's.",
"source": "index.js",
"main": "dist/main.js",
"module": "dist/module.js",
"scripts": {
"test": "mocha",
"demo": "parcel demo/index.html",
"lint": "eslint . --cache",
"watch": "parcel watch",
"build": "parcel build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blessenm/tweet-to-html.git"
},
"keywords": [
"twitter",
"tweet",
"api",
"html",
"entities",
"autolink",
"autolinker",
"emoji"
],
"author": {
"name": "Blessan Mathew",
"email": "[email protected]",
"url": "https://blessanmathew.com/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/blessenm/tweet-to-html/issues"
},
"homepage": "https://github.com/blessenm/tweet-to-html#readme",
"dependencies": {
"twemoji": "^1.4.1"
},
"devDependencies": {
"chai": "^3.4.0",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"mocha": "^10.1.0",
"parcel": "^2.6.2",
"prettier": "^2.7.1"
},
"browserslist": "> 0.5%, last 2 versions, not dead",
"engines": {
"node": "14.* || >= 16"
},
"volta": {
"node": "16.15.1",
"npm": "8.13.1"
},
"prettier": {
"singleQuote": true
}
}