-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.31 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
58
59
{
"name": "arvis-linker",
"version": "0.5.1",
"description": "Make Arvis extensions installable from npm",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc"
},
"bin": {
"arvis-link": "dist/link.js",
"arvis-unlink": "dist/unlink.js"
},
"files": [
"dist/**"
],
"keywords": [
"arvis",
"arvish",
"arvis-workflow",
"arvis-plugin",
"arvis-extension",
"npm"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jopemachine/arvis-linker.git"
},
"author": "jopemachine",
"maintainers": [
"jopemachine"
],
"contributors": [],
"license": "MIT",
"bugs": {
"url": "https://github.com/jopemachine/arvis-linker/issues"
},
"homepage": "https://github.com/jopemachine/arvis-linker#README.md",
"dependencies": {
"arvis-extension-validator": ">=0.3.0",
"del": "^6.0.0",
"env-paths": "^2.2.1",
"fs-extra": "^10.0.0",
"global-dirs": "^3.0.0",
"is-travis": "^2.0.0",
"json5": "^2.2.0",
"read-pkg-up": "^1.0.1",
"sudo-block": "^1.2.0"
},
"devDependencies": {
"@types/fs-extra": "^9.0.11",
"@types/node": "^15.6.1",
"@types/read-pkg-up": "^6.0.0",
"typescript": "^4.3.2"
},
"optionalDependencies": {
"is-admin": "^3.0.0"
}
}