forked from joebowbeer/regsync
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.49 KB
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
{
"name": "@joebowbeer/regsync",
"version": "1.2.3",
"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.1.10",
"yargs": "^15.3.1"
},
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"@babel/preset-typescript": "^7.10.1",
"@types/jest": "^25.2.3",
"@types/pacote": "^11.1.0",
"@types/ssri": "^6.0.3",
"babel-jest": "^25.5.1",
"jest": "^26.0.1",
"typescript": "^3.9.5"
},
"engines": {
"node": ">=10"
},
"babel": {
"presets": [
[
"@babel/env",
{
"targets": {
"node": "10"
}
}
],
"@babel/typescript"
]
},
"jest": {
"collectCoverage": true
}
}