-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.63 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
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@nexssp/command",
"description": "Commands for not only Nexss Programmer",
"version": "1.0.18",
"homepage": "https://nexss.com",
"exports": {
"import": "./src/index.mjs",
"require": "./src/index.js"
},
"main": "./src/index.js",
"bin": {
"nexssp-command": "bin/nexssp-command.js"
},
"files": [
"src/**/*",
"bin/*",
"index.js",
"index.mjs",
"aliases.json"
],
"scripts": {
"dev": "npm run env LOGDEBUG_FUNCTION_TRACKER=true -- node bin/nexssp-command.js add mycommand echo 'my command works.' --debug:diff",
"test": "npx @nexssp/test --debug",
"nexss:clean": ""
},
"author": {
"name": "Marcin Polak",
"email": "[email protected]",
"url": "https://nexss.com"
},
"keywords": [
"programming",
"programmer",
"commands",
"helper",
"nexss",
"nexss programmer"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/nexssp/command.git"
},
"bugs": {
"url": "https://github.com/nexssp/command/issues",
"email": "[email protected]"
},
"license": "MIT",
"funding": [
{
"type": "paypal",
"url": "https://www.paypal.com/paypalme/mapoart"
},
{
"type": "github",
"url": "https://github.com/nexssp/cli?sponsor=1"
}
],
"dependencies": {
"@nexssp/ansi": "^1.1.5",
"@nexssp/config": "^1.0.9",
"@nexssp/data": "^1.0.5",
"@nexssp/dddebug": "^1.0.7",
"@nexssp/extend": "^2.0.9",
"@nexssp/logdebug": "^1.0.20",
"@nexssp/os": "^2.0.21",
"@nexssp/plugin": "^1.0.7",
"@nexssp/system": "^1.1.9",
"@nexssp/test": "^1.1.12",
"minimist": "^1.2.5"
}
}