-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.99 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
72
73
74
75
76
77
{
"name": "nodecliac",
"version": "0.0.1",
"description": "Add Bash auto completion to your CLI app.",
"main": "./src/parser/js2/index.js",
"bin": {
"nodecliac": "./src/parser/js2/index.js"
},
"bugs": {
"url": "https://github.com/cgabriel5/nodecliac/issues"
},
"homepage": "https://github.com/cgabriel5/nodecliac#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/cgabriel5/nodecliac.git"
},
"scripts": {
"postinstall": "./src/scripts/main/postinstall.sh",
"pretty": "prettier-cli-watcher --watcher=hound --notify --setup",
"lint": "cross-env ESLINT_CFS_VERBOSE=true ./node_modules/eslint/bin/eslint.js -c='configs/eslint.config.js' --ignore-path='configs/eslintignore' --format='simple' '**/*.{js,jsx}'; exit 0",
"tests": "tests/scripts/main.sh -t ./tests/scripts/tests.sh -n $1",
"tests:silent": "tests/scripts/main.sh -p false -t ./tests/scripts/tests.sh -n $1",
"tests:force": "tests/scripts/main.sh -f true -t ./tests/scripts/tests.sh -n $1",
"tests:debug": "tests/scripts/main.sh -f true -d true -t ./tests/scripts/tests.sh -n $1",
"files": "bash -c \"find . -not -path \\\"*/node_modules/*\\\" -type f -name \\\"*.\\$0\\\" -not -path '*/\\\\.*'\"",
"install:local": "sudo echo > /dev/null 2>&1 && bash -c \"bash <(cat ./install.sh) --installer=\\$0 --branch=\\$1 && source ~/.bashrc\"",
"install:remote": "sudo echo > /dev/null 2>&1 && bash -c \"bash <(curl -Ls https://raw.githubusercontent.com/cgabriel5/nodecliac/\\$1/install.sh) --installer=\\$0 --branch=\\$1 && source ~/.bashrc\"",
"checksum": "./src/scripts/main/checksum.sh",
"build": "SPPID=\"$PPID\" ./src/scripts/main/build.sh $1",
"cpp": "g++ -std=c++11 -I ./headers -I ./libs main.cpp -o main.bin ./source/lexer.cpp ./source/parser.cpp ./source/str.cpp ./source/io.cpp ./source/path.cpp ./source/fs.cpp ./source/validation.cpp ./source/defvars.cpp ./source/issue.cpp ./source/acdef.cpp ./source/formatter.cpp ./libs/md5.cpp ./source/parsetools.cpp && time ./main.bin make --source /opt/lampp/htdocs/projects/nodecliac/src/parser/python/debug.acmap --print --trace --testx --indent \"s:4\"; rm main.bin"
},
"dependencies": {
"chalk": "4.1.2",
"deepcopy": "^2.1.0",
"directory-exists": "^2.0.1",
"du": "^1.0.0",
"file-exists": "^5.0.1",
"file-extension": "^4.0.5",
"flatry": "^1.0.12",
"follow-redirects": "1.15.2",
"make-dir": "^3.1.0",
"minimist": "1.2.7",
"path-exists": "^4.0.0",
"prompt-sync": "^4.2.0",
"recursive-copy": "2.0.14",
"rimraf": "3.0.2",
"shelljs": "0.8.5",
"strip-ansi": "6.0.1",
"symlink-dir": "4.2.0",
"through2": "^4.0.2",
"xregexp": "5.1.1"
},
"author": "Carlos Gabriel",
"license": "MIT",
"keywords": [
"bash",
"cli",
"terminal",
"completion"
],
"engines": {
"node": ">=8.14.0",
"npm": ">=6.4.1"
},
"devDependencies": {
"cross-env": "^7.0.3",
"eslint": "7.32.0",
"eslint-config-simple": "*",
"eslint-formatter-simple": "*",
"prettier": "^2.8.3",
"prettier-cli-watcher": "*"
},
"files": [
"src",
"resources/nodecliac"
]
}