-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.13 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
{
"name": "repo-scraper",
"version": "0.4.0",
"main": "lib/index.js",
"bin": {
"repo-scrape": "bin/cli.js"
},
"scripts": {
"clean": "rm -rf .cache/ coverage/ static/ tmp/",
"lint": "standard --fix",
"start": "node bin/cli.js",
"test": "jest --no-cache --silent && standard"
},
"author": "Jon Lauridsen <[email protected]>",
"license": "ISC",
"dependencies": {
"fs-extra": "^7.0.1",
"htmldom": "^3.0.8",
"image-size": "^0.6.2",
"json-stable-stringify": "^1.0.1",
"lodash": "^4.17.11",
"loglevel": "^1.6.1",
"lowdb": "^1.0.0",
"request": "^2.88.0",
"request-promise-native": "^1.0.5",
"url-join": "^4.0.0",
"yargs": "^12.0.5"
},
"devDependencies": {
"jest": "^23.6.0",
"nock": "^10.0.5",
"standard": "^12.0.1",
"tmp-promise": "^1.0.5"
},
"jest": {
"collectCoverage": true,
"coverageReporters": [
"html",
"text-summary"
],
"collectCoverageFrom": [
"**/*.js"
],
"coveragePathIgnorePatterns": [
"<rootDir>/coverage/",
"<rootDir>/node_modules/"
],
"testRegex": ".(test|spec)\\.jsx?$"
}
}