forked from gzuidhof/go-npm
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
32 lines (32 loc) · 867 Bytes
/
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
{
"name": "@go-task/go-npm",
"version": "0.2.0",
"description": "Distribute and install Go binaries via NPM",
"main": "index.js",
"bin": {
"go-npm": "./bin/index.js"
},
"scripts": {
"test": "jest --silent",
"build": "rm -rf ./bin && esbuild --bundle src/index.js --outfile=\"./bin/index.js\" --platform=node --target=es6 --minify-whitespace",
"prepublishOnly": "npm i && npm run build"
},
"author": "Andrey Nering",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/go-task/go-npm.git"
},
"homepage": "https://github.com/go-task/go-npm",
"devDependencies": {
"adm-zip": "0.5.10",
"esbuild": "^0.12.17",
"jest": "29.5.0",
"mkdirp": "^1.0.4",
"mock-fs": "^5.2.0",
"nock": "^13.3.1",
"request": "^2.88.2",
"tar": "^2.2.2",
"used-pm": "^1.0.0"
}
}