-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 981 Bytes
/
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
{
"name": "fink-shortener",
"description": "Makes URL short",
"homepage": "https://github.com/finkhq/fink-shortener",
"version": "1.1.1",
"main": "./index.js",
"author": {
"name": "fink",
"url": "https://github.com/finkhq"
},
"repository": {
"type": "git",
"url": "git+https://github.com/finkhq/fink-shortener.git"
},
"bugs": {
"url": "https://github.com/finkhq/fink-shortener/issues"
},
"keywords": [
"fink",
"shortener",
"url",
"🐀"
],
"dependencies": {
"encode-base58": "~2.0.0"
},
"devDependencies": {
"git-dirty": "latest",
"mocha": "latest",
"should": "latest",
"standard": "latest"
},
"engines": {
"node": ">= 4"
},
"files": [
"index.js"
],
"scripts": {
"clean": "rm -rf node_modules",
"lint": "standard",
"pretest": "npm run lint",
"test": "mocha"
},
"license": "MIT",
"standard": {
"globals": [
"describe",
"it"
]
}
}