-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 957 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
33
34
35
36
37
38
39
40
41
42
{
"name": "local-package-publisher",
"version": "1.0.5",
"description": "A utility app for publishing your npm packages locally for testing",
"main": "index.js",
"scripts": {
"start": "node index.js"
},
"bin": {
"local-package-publisher": "./index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/debashish2014/local-package-publisher.git"
},
"keywords": [
"local",
"package",
"test",
"publisher",
"npm",
"tester"
],
"author": "Debashish Pal",
"license": "MIT",
"files": [
"index.js",
"package.json"
],
"bugs": {
"url": "https://github.com/debashish2014/local-package-publisher/issues"
},
"homepage": "https://github.com/debashish2014/local-package-publisher#readme",
"dependencies": {
"chalk": "^4.1.2",
"commander": "^11.0.0",
"cross-spawn": "^7.0.3",
"fs-extra": "^11.1.1",
"tar-pack": "^3.4.1",
"tmp": "^0.2.1"
}
}