forked from davideicardi/live-plugin-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.43 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
{
"name": "live-plugin-manager",
"version": "0.17.1",
"description": "Install and uninstall any node package at runtime from npm registry",
"keywords": [
"plugin",
"package",
"npm",
"install"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"src-build": "tsc",
"src-build-w": "tsc -w",
"develop": "npm run src-build-w",
"pretest": "tsc -p test",
"test": "mocha --require source-map-support/register"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davideicardi/live-plugin-manager.git"
},
"author": "Davide Icardi",
"license": "ISC",
"bugs": {
"url": "https://github.com/davideicardi/live-plugin-manager/issues"
},
"homepage": "https://github.com/davideicardi/live-plugin-manager#readme",
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.7",
"chai": "^4.3.4",
"mocha": "^9.1.3",
"source-map-support": "^0.5.21",
"typescript": "^4.5.4"
},
"dependencies": {
"@types/debug": "^4.1.7",
"@types/fs-extra": "^9.0.13",
"@types/lockfile": "^1.0.2",
"@types/semver": "^7.3.9",
"@types/tar": "^6.1.1",
"@types/url-join": "4.0.1",
"@types/node-fetch": "^2.5.12",
"debug": "^4.3.3",
"fs-extra": "^10.0.0",
"lockfile": "^1.0.4",
"node-fetch": "^2.6.6",
"semver": "^7.3.5",
"tar": "^6.1.11",
"url-join": "^4.0.1"
}
}