This repository has been archived by the owner on Dec 7, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.56 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
{
"name": "meddelare-counters",
"version": "1.0.7",
"description": "Node.js promise-based, asynchronous, parallel, per-URL social network share count fetcher -- the base of Meddelare.",
"homepage": "https://meddelare.com/",
"repository": {
"type": "git",
"url": "git://github.com/meddelare/meddelare-node-counters.git"
},
"bugs": {
"url": "https://github.com/meddelare/meddelare-node-counters/issues"
},
"main": "lib/index.js",
"dependencies": {
"bluebird": "^3.4.6",
"extend": "^3.0.0",
"memory-cache": "^0.1.4",
"request": "^2.33.0"
},
"devDependencies": {
"eslint": "^0.23.0",
"jscs": "^1.13.1",
"pre-commit": "^1.0.10"
},
"scripts": {
"test": "npm run lint && node test/index.integration.js",
"lint": "npm run eslint && npm run jscs",
"jscs": "node node_modules/jscs/bin/jscs lib/index.js",
"eslint": "node node_modules/eslint/bin/eslint.js lib/index.js"
},
"engines": {
"node": "^0.12.0 || ^4.0.0 || ^5.0.0 || ^6.0.0",
"npm": "^2.5.1 || ^3.0.0"
},
"license": "MIT",
"author": {
"name": "Meddelare",
"url": "https://meddelare.com/"
},
"contributors": [
{
"name": "Thomas Davis",
"url": "http://thomasdav.is/"
},
{
"name": "Beau Gunderson",
"url": "https://beaugunderson.com/"
},
{
"name": "Joel Purra",
"url": "http://joelpurra.com/"
}
]
}