-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.59 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.59 KB
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
{
"name": "mr-git-cli",
"version": "0.1.13",
"description": "yet another git flow cli",
"main": "mr.js",
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"directories": {
"test": "tests"
},
"bin": {
"mr": "mr.js"
},
"scripts": {
"preinstall": "npm config set @gitlab-org:registry https://gitlab.com/api/v4/packages/npm/ && npm i --save-dev @gitlab-org/jsfuzz",
"pretest": "npx eslint .",
"test": "node --test --experimental-test-coverage tests/*.js",
"semgrep": "docker run --rm -v \"$PWD:/src\" returntocorp/semgrep:latest semgrep --strict --metrics off --dataflow-traces --config p/default /src",
"fuzz": "export FUZZ_TIME=60 && npx @gitlab-org/jsfuzz --only-ascii --versifier=false --fuzzTime $FUZZ_TIME --dir ./fuzz/in --exact-artifact-path ./fuzz/crash.txt ./fuzz/target.js ./fuzz/in && export FUZZ_TIME=",
"postfuzz": "nyc report --reporter=html --exclude-node-modules=false && rm -rf ./fuzz/coverage && mv coverage ./fuzz && mv .nyc_output ./fuzz/coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jonny64/mr-git-cli.git"
},
"keywords": [
"git",
"cli",
"gitlab"
],
"author": "jonny64",
"license": "MIT",
"bugs": {
"url": "https://github.com/jonny64/mr-git-cli/issues"
},
"homepage": "https://github.com/jonny64/mr-git-cli#readme",
"devDependencies": {
"@eslint/js": "^9.10.0",
"@gitlab-org/jsfuzz": "^1.2.4",
"eslint": "^9.10.0",
"eslint-plugin-no-floating-promise": "^2.0.0",
"eslint-plugin-sonarjs": "^1.0.4",
"globals": "^16.0.0"
}
}