forked from nelsonic/github-scraper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.1 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
{
"name": "github-scraper",
"version": "6.8.0",
"description": "insert imaginative description here",
"main": "lib/index.js",
"scripts": {
"dev": "nodemon test/followers.js",
"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"
},
"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": {
"cheerio": "^1.0.0-rc.3"
},
"devDependencies": {
"istanbul": "^0.4.5",
"jshint": "^2.10.2",
"mkdirp": "^0.5.1",
"pre-commit": "1.2.2",
"tap-spec": "^5.0.0",
"tape": "^4.10.1"
},
"pre-commit": [
"coverage"
]
}