-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.06 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
{
"name": "prettylink",
"version": "1.1.0",
"description": "A powerful Node.js short URL library.",
"main": "index.js",
"scripts": {
"dev": "nodemon ./examples/demo.js",
"test": "mocha --timeout 15000"
},
"files": [
"lib/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/stu01509/pretty-link.git"
},
"author": "stu01509",
"license": "MIT",
"bugs": {
"url": "https://github.com/stu01509/pretty-link/issues"
},
"homepage": "https://github.com/stu01509/pretty-link#readme",
"devDependencies": {
"eslint": "^6.1.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"mocha": "^9.2.1",
"nodemon": "^2.0.15",
"should": "^13.2.3"
},
"dependencies": {
"cheerio": "^1.0.0-rc.3",
"request": "^2.88.0"
},
"keywords": [
"bitly",
"tinyurl",
"reurl",
"picsee",
"0rz",
"goo.gl",
"shorten",
"url-shortener",
"link-shortener",
"url-short",
"link-short",
"link",
"url"
],
"engines": {
"node": ">=8.0.0"
}
}