-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.41 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
{
"name": "@ts-common/publish",
"version": "0.0.8",
"description": "The tool published NPM packages from a set of `.tgz` files.",
"main": "dist/index.js",
"scripts": {
"publishtgz": "tsc && node ./bin/publishtgz",
"tsc": "tsc",
"test": "tsc && nyc mocha ./dist/test/*.js --reporter mocha-junit-reporter",
"prepack": "npm install && tsc",
"publishall": "npm install && tsc && node dist/index.js",
"publishall:auto": "npm install && tsc && node dist/index.js auto",
"unpublishall": "npm install && tsc && node dist/index.js unpublish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ts-common/publish.git"
},
"keywords": [
"publish"
],
"files": [
"dist/index.js",
"dist/index.js.map",
"dist/index.d.ts",
"dist/index.d.ts.map",
"src/index.ts",
"bin/publishtgz"
],
"bin": {
"publishtgz": "./bin/publishtgz"
},
"author": "Sergey Shandar",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ts-common/publish/issues"
},
"homepage": "https://github.com/ts-common/publish#readme",
"devDependencies": {
"@types/decompress": "^4.2.6",
"@types/mocha": "^10.0.3",
"@types/node": "^20.8.10",
"chai": "^4.3.10",
"mocha": "^10.2.0",
"mocha-junit-reporter": "^2.2.1",
"nyc": "^15.1.0",
"typescript": "^5.2.2"
},
"dependencies": {
"decompress": "^4.2.1",
"tslib": "^2.6.2"
}
}