forked from joebowbeer/regsync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.52 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
67
68
{
"name": "@joebowbeer/regsync",
"version": "1.3.8",
"description": "Publish package versions from one registry into another",
"main": "dist/index.js",
"bin": {
"regsync": "dist/cli.js"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "npm run compile -- --delete-dir-on-start",
"compile": "babel src -d dist --extensions .ts --ignore '**/*.d.ts,**/*.test.ts'",
"check-types": "tsc",
"watch": "npm run compile -- --watch",
"prepare": "npm run build",
"test": "jest"
},
"repository": "github:joebowbeer/regsync",
"author": "joebowbeer",
"license": "MIT",
"bugs": {
"url": "https://github.com/joebowbeer/regsync/issues"
},
"homepage": "https://github.com/joebowbeer/regsync#readme",
"dependencies": {
"got": "^10.7.0",
"libnpmpublish": "^2.0.0",
"pacote": "^11.2.3",
"ssri": "^8.0.1",
"yargs": "^16.2.0"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"@types/jest": "^26.0.20",
"@types/pacote": "^11.1.0",
"@types/ssri": "^7.1.0",
"babel-jest": "^26.6.3",
"jest": "^26.6.3",
"typescript": "^4.1.3"
},
"engines": {
"node": ">=10"
},
"babel": {
"presets": [
[
"@babel/env",
{
"targets": {
"node": "10"
}
}
],
"@babel/typescript"
]
},
"jest": {
"collectCoverage": true
}
}