-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.44 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
{
"name": "publish-packed",
"version": "4.1.2",
"description": "Publishes a package together with its dependencies",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib/"
],
"bin": "lib/cli.js",
"preferGlobal": true,
"engines": {
"node": ">=12.10"
},
"scripts": {
"tsc": "tsc",
"ci-test": "exit 0",
"test": "preview && npm-run-all -p -r verdaccio tape",
"prepublishOnly": "npm run tsc",
"verdaccio": "verdaccio --config test/registry/config.yaml",
"tape": "ts-node test --type-check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zkochan/publish-packed.git"
},
"author": "Zoltan Kochan",
"license": "MIT",
"bugs": {
"url": "https://github.com/zkochan/publish-packed/issues"
},
"homepage": "https://github.com/zkochan/publish-packed#readme",
"dependencies": {
"all-module-paths": "^0.10.7",
"execa": "^5.0.0",
"fs-extra": "^11.2.0",
"getopts": "^2.2.5",
"nm-prune": "^5.0.0",
"read-pkg": "^5.2.0",
"rename-overwrite": "^5.0.0",
"rimraf-then": "^1.0.1",
"write-pkg": "^4.0.0"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/node": "^13.13.31",
"npm": "^8.3.0",
"npm-run-all": "^4.1.5",
"p-map-series": "^2.1.0",
"package-preview": "^4.0.0",
"tape": "^5.4.0",
"tape-await": "^0.1.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.4",
"verdaccio": "^5.4.0"
}
}