-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
66 lines (66 loc) · 2.14 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
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@discoveryjs/scan-git",
"version": "0.1.5",
"description": "A tool set for fast and efficient git scanning to capture data with focus on large repos",
"repository": "discoveryjs/scan-git",
"author": "Roman Dvornov <rdvornov@gmail.com>",
"license": "MIT",
"keywords": [
"git",
"scan",
"branch",
"tag",
"files",
"commits",
"delta"
],
"type": "module",
"main": "./lib/index.cjs",
"module": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js",
"require": "./lib/index.cjs"
},
"./package.json": "./package.json"
},
"files": [
"lib"
],
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"@discoveryjs/scan-fs": "^4.0.0"
},
"devDependencies": {
"@types/mocha": "^10.0.2",
"@types/node": "^20.8.5",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"c8": "^8.0.1",
"eslint": "^8.51.0",
"eslint-plugin-prettier": "^5.0.1",
"mocha": "^10.2.0",
"prettier": "~3.0.3",
"rollup": "^4.0.2",
"sucrase": "^3.34.0",
"typescript": "~5.3.0"
},
"scripts": {
"check": "npm run lint && npm run ts-check",
"lint": "eslint src test examples scripts/*.cjs && prettier -c src test examples scripts README.md",
"ts-check": "tsc --noEmit",
"ts-emit-types": "tsc --emitDeclarationOnly",
"test": "npm run test:esm && npm run test:cjs",
"test:esm": "mocha lib-test/*.js --reporter progress",
"test:cjs": "mocha lib-test/*.cjs --reporter progress",
"build": "npm run build:transpile",
"build:transpile": "node scripts/transpile.cjs",
"coverage": "c8 --exclude lib-test --reporter=lcovonly npm run test:esm",
"watch": "npm run build:transpile -- --watch --types",
"prepublishOnly": "npm run lint && rm -rf lib/** && npm run ts-emit-types && npm run build && npm run test"
}
}