-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
80 lines (80 loc) · 1.7 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "bitly",
"description": "A Bit.ly API library for Node.JS",
"license": "MIT",
"keywords": [
"url",
"bitly",
"shortner",
"util"
],
"homepage": "https://github.com/tanepiper/node-bitly",
"version": "7.1.2",
"author": {
"name": "Tane Piper",
"url": "https://github.com/tanepiper"
},
"contributors": [
{
"name": "Tane Piper",
"email": "piper.tane@gmail.com"
},
{
"name": "François de Metz",
"email": "francois@2metz.fr"
},
{
"name": "zephrax"
},
{
"name": "jessefulton"
},
{
"name": "coaxial",
"email": "coaxial@cxial.tk"
},
{
"name": "Ildar Sagdejev",
"email": "specious@gmail.com"
},
{
"name": "Joshua Tzucker",
"url": "https://joshuatz.com/"
}
],
"repository": {
"type": "git",
"url": "https://github.com/tanepiper/node-bitly.git"
},
"bugs": {
"url": "https://github.com/tanepiper/node-bitly/issues"
},
"engines": {
"node": ">= 10.0.0"
},
"scripts": {
"test": "mocha -r ts-node/register --reporter list src/*.spec.ts",
"build": "npx tsc",
"docs": "rm -rf ./docs && npx typedoc --readme ./README.md --out ./docs && touch ./docs/.nojekyll"
},
"devDependencies": {
"@types/chai": "^4.2.10",
"@types/node": "^13.7.7",
"chai": "^4.2.0",
"jsdoc": "^3.6.3",
"minami": "^1.2.3",
"mocha": "^7.1.0",
"mocha-typescript": "^1.1.17",
"np": "^5.2.1",
"replay": "^2.4.0",
"ts-node": "^8.6.2",
"typedoc": "^0.16.11",
"typescript": "^3.8.3"
},
"dependencies": {
"axios": "^0.21.1",
"valid-url": "^1.0.9"
},
"main": "dist/index.js",
"types": "dist/index.d.ts"
}