-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.42 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": "which-pkgmgr",
"version": "1.0.0",
"description": "detect default package manager in nodejs using which-pkgmgr",
"main": "index.js",
"exports": {
"require": "./index.js",
"import": "./index.mjs"
},
"unpkg": "index.min.js",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ganeshkbhat/which-pkgmgr.git"
},
"bugs": {
"url": "https://github.com/ganeshkbhat/which-pkgmgr/issues"
},
"homepage": "https://github.com/ganeshkbhat/which-pkgmgr#readme",
"scripts": {
"test": "mocha --reporter spec --recursive --timeout 60000",
"uglify": "uglifyjs --compress --mangle reserved=['$','require','exports'] index.js -o index.min.js",
"gitadd": "git add .",
"build": "tsc"
},
"pre-commit": {
"run": [
"test"
]
},
"keywords": [],
"devDependencies": {
"@types/node": "^20.11.16",
"@posva/prompts": "^2.4.4",
"@types/fs-extra": "^11.0.4",
"@types/ini": "^1.3.33",
"@types/which": "^3.0.3",
"chai": "^4.4.1",
"mocha": "^10.2.0",
"pre-commit": "^1.2.2",
"pre-push": "^0.1.4",
"sinon": "^17.0.1",
"typescript": "^5.3.3",
"uglify-js": "^3.17.4",
"unimported": "^1.31.1"
},
"dependencies": {
"find-up": "^6.3.0",
"fs-extra": "^11.1.1",
"which": "^4.0.0",
"@posva/prompts": "^2.4.4"
},
"author": "Ganesh B <ganeshsurfs@gmail.com>",
"license": "MIT"
}