forked from sanathkr/go-npm
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.76 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.76 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
{
"name": "go-npm-next",
"version": "1.1.0",
"description": "Distribute and install Go binaries via NPM",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"go-npm": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "tsc --noEmit",
"clean": "rm -rf dist coverage",
"prepublishOnly": "npm run clean && npm run build && npm run test",
"version:patch": "npm version patch",
"version:minor": "npm version minor",
"version:major": "npm version major",
"publish:dry": "npm publish --dry-run",
"publish:check": "npm run build && npm run test && npm run publish:dry",
"release:patch": "npm run publish:check && npm run version:patch && npm publish",
"release:minor": "npm run publish:check && npm run version:minor && npm publish",
"release:major": "npm run publish:check && npm run version:major && npm publish"
},
"license": "Apache-2.0",
"dependencies": {
"mkdirp": "^3.0.1",
"node-fetch": "^2.7.0",
"tar": "^6.2.1"
},
"devDependencies": {
"@types/node": "^18.19.0",
"@types/node-fetch": "^2.6.11",
"@types/tar": "^6.1.11",
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"repository": {
"type": "git",
"url": "https://github.com/hookdeck/go-npm.git"
},
"homepage": "https://github.com/hookdeck/go-npm",
"bugs": {
"url": "https://github.com/hookdeck/go-npm/issues"
},
"keywords": [
"golang",
"go",
"binary",
"npm",
"cross-platform",
"distribution",
"cli",
"typescript"
],
"files": [
"dist/**/*",
"README.md",
"LICENSE"
]
}