-
Notifications
You must be signed in to change notification settings - Fork 98
/
Copy pathpackage.json
55 lines (55 loc) · 1.45 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
{
"name": "github-scraper",
"version": "7.1.1",
"description": "Parse data from GitHub Profiles, Repos and Orgs",
"main": "lib/index.js",
"scripts": {
"dev": "nodemon test/followers.js",
"start": "live-server --open=./examples",
"quick": "./node_modules/tape/bin/tape ./test/*.js",
"test": "./node_modules/.bin/istanbul cover ./node_modules/tape/bin/tape ./test/*.js | node_modules/tap-spec/bin/cmd.js",
"coverage": "./node_modules/.bin/istanbul cover ./node_modules/tape/bin/tape ./test/*.js && istanbul check-coverage --lines 100 --branches 100",
"deploy": "dpl"
},
"repository": {
"type": "git",
"url": "https://github.com/nelsonic/github-scraper.git"
},
"author": "Dyler Turden",
"license": "ISC",
"bugs": {
"url": "https://github.com/nelsonic/github-scraper/issues"
},
"homepage": "https://github.com/nelsonic/github-scraper",
"engines": {
"node": ">= 10"
},
"dependencies": {
"aws-sdk": "^2.1692.0",
"cheerio": "^1.0.0",
"env2": "^2.2.2",
"github-scraper": "^7.1.1"
},
"devDependencies": {
"dpl": "^5.0.1",
"istanbul": "^0.4.5",
"jshint": "^2.11.0",
"live-server": "^1.2.1",
"mkdirp": "^3.0.1",
"pre-commit": "1.2.2",
"tap-spec": "^5.0.0",
"tape": "^5.9.0"
},
"pre-commit": [
"coverage"
],
"files_to_deploy": [
"index.js",
"package.json",
"lambda/",
"lib/",
".env"
],
"lambda_memory": 256,
"lambda_timeout": 42
}