-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
125 lines (125 loc) · 3 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "gushio",
"version": "0.7.4",
"description": "Like bash scripts, but in JavaScript",
"keywords": [
"cli",
"terminal",
"scripting",
"script",
"shell",
"bash",
"cmd",
"command-line",
"command",
"commander",
"prompt",
"argument",
"args",
"argv",
"multiplatform",
"automation"
],
"homepage": "https://forge-srl.github.io/gushio",
"author": "Forge S.r.l.",
"license": "MIT",
"maintainers": [
{
"name": "Tommaso Bossi",
"email": "tommaso.bossi@forge.srl"
}
],
"repository": {
"type": "git",
"url": "https://github.com/Forge-Srl/gushio.git"
},
"bugs": {
"url": "https://github.com/Forge-Srl/gushio/issues"
},
"type": "module",
"main": "cli/cliProgram.js",
"bin": {
"gushio": "cli/cli.js"
},
"scripts": {
"test": "node --trace-warnings --experimental-vm-modules node_modules/jest/bin/jest.js --coverage",
"lint": "eslint .",
"prerelease": "npm test && npm run lint",
"release": "standard-version --commit-all",
"postrelease": "git push --follow-tags",
"sample:sample1": "npm exec -- gushio -c --verbose tests/samples/sample1.js someQuix 165 320 541 --baz boom --bar qwerty --bar sc --bar sdcsdvsv",
"sample:http-cat": "npm exec -- gushio -c examples/http-cat.js",
"sample:word-sort:cjs": "npm exec -- gushio -c examples/word-sort.cjs --file package.json",
"sample:word-sort:esm": "npm exec -- gushio -c examples/word-sort.mjs --file package.json"
},
"files": [
"/cli",
"/runner",
"/utils",
"/README.md",
"/LICENSE.md"
],
"dependencies": {
"commander": "11.1.0",
"enquirer": "2.4.1",
"shelljs": "0.8.5",
"ansi-colors": "4.1.3",
"ora": "7.0.1",
"node-fetch": "3.3.2",
"require-from-string": "2.0.2",
"fs-extra": "11.1.1",
"glob": "10.3.10",
"yaml": "2.3.4",
"semver": "7.5.4",
"is-string": "1.0.7",
"abort-controller": "3.0.0",
"@npmcli/arborist": "7.2.1",
"@babel/core": "7.23.3",
"@babel/types": "7.23.3"
},
"devDependencies": {
"eslint": "^8.53.0",
"jest": "^29.7.0",
"jest-worker": "^29.7.0",
"mock-http-server": "^1.4.5",
"standard-version": "^9.5.0",
"temp-dir": "^3.0.0"
},
"engines": {
"node": ">=16"
},
"jest": {
"transform": {},
"resetMocks": true,
"resetModules": true,
"reporters": [
"default",
"github-actions"
],
"collectCoverageFrom": [
"**/*.{js,cjs,mjs}",
"!**/node_modules/**",
"!**/examples/**",
"!**/tests/**",
"!**/coverage/**",
"!**/documentation/**",
"!**/.eslintrc.cjs",
"!**/*.gushio.js"
],
"coverageThreshold": {
"global": {
"branches": 85,
"functions": 90,
"lines": 90,
"statements": 90
}
}
},
"standard-version": {
"header": "Gushio - CHANGELOG\n---",
"tag-prefix": "release/",
"scripts": {
"postchangelog": "npm exec -- gushio create-docs-release.gushio.js"
}
}
}