-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
64 lines (64 loc) · 1.8 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
{
"name": "registry-sync",
"version": "6.1.2",
"description": "synchronize a remote npm registry for private use",
"repository": "https://github.com/heikkipora/registry-sync",
"bin": {
"registry-sync": "bin/sync"
},
"scripts": {
"build": "./build-npm",
"prettier": "prettier --write .",
"prettier:check": "prettier --check --loglevel warn .",
"eslint": "eslint --fix --format=codeframe --ext .ts .",
"eslint:check": "eslint --max-warnings=0 --format=codeframe --ext .ts .",
"lint-staged": "lint-staged --verbose",
"test": "mocha -r ts-node/register --config test/.mocharc.js --timeout 120000 test/*.ts",
"release-test": "cd release-test && ./run-sync-install-cycle.sh"
},
"author": "Heikki Pora",
"license": "MIT",
"dependencies": {
"@yarnpkg/lockfile": "1.1.0",
"axios": "1.7.7",
"commander": "12.1.0",
"lru-cache": "10.2.2",
"semver": "7.6.3",
"ssri": "11.0.0",
"tar-fs": "3.0.6"
},
"devDependencies": {
"@arkweid/lefthook": "0.7.7",
"@types/chai": "4.3.19",
"@types/lodash": "4.17.7",
"@types/mocha": "10.0.8",
"@types/node": "20.14.8",
"@types/semver": "7.5.8",
"@types/ssri": "7.1.5",
"@types/tar-fs": "2.0.4",
"@types/yarnpkg__lockfile": "1.1.9",
"@typescript-eslint/eslint-plugin": "6.19.0",
"@typescript-eslint/parser": "6.19.0",
"chai": "4.3.10",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-formatter-codeframe": "7.32.1",
"eslint-plugin-mocha": "10.5.0",
"express": "4.21.1",
"lint-staged": "15.2.10",
"mocha": "10.7.3",
"prettier": "3.3.3",
"ts-node": "10.9.2",
"typescript": "5.6.2"
},
"keywords": [
"registry",
"synchronize",
"mirror",
"private",
"offline"
],
"engines": {
"node": ">=18.20.0"
}
}