-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
61 lines (61 loc) · 1.41 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
{
"name": "tweetparser.js",
"description": "A small JavaScript library that parses tweets and turns URLs, @usernames, and #hashtags into clickable links.",
"version": "3.0.0",
"homepage": "https://vincentloy.github.io/tweetParser.js",
"author": {
"name": "Vincent Loy",
"url": "http://vincent-loy.fr",
"email": "vincent.loy1@gmail.com"
},
"contributors": [
{
"name": "Paúl Jácome",
"url": "https://github.com/ankalago"
},
{
"name": "patheticcockroach",
"url": "https://github.com/patheticcockroach"
}
],
"keywords": [
"twitter",
"hashtag",
"url",
"tweetParser",
"parser",
"parse",
"plugin"
],
"repository": {
"type": "git",
"url": "https://github.com/VincentLoy/tweetParser.js"
},
"bugs": {
"url": "https://github.com/VincentLoy/tweetParser.js/issues"
},
"license": "MIT",
"engines": {
"node": ">=22.11.0",
"npm": ">=7.0.3"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"fancy-log": "^2.0.0",
"gulp": "^5.0.0",
"gulp-babel": "^8.0.0",
"gulp-clean-css": "^4.3.0",
"gulp-less": "^5.0.0",
"gulp-plumber": "^1.2.1",
"gulp-rename": "^2.0.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-terser": "^2.1.0",
"lesshat": "^4.1.0",
"plugin-error": "^2.0.1"
},
"scripts": {
"release": "npx gulp",
"start": "npx gulp release"
}
}