-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 3.4 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 3.4 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
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
{
"name": "shell-factory",
"version": "3.2.1",
"description": "Typescript ESM module to build Bourne Shell scripts comfortably, dynamically",
"main": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"type": "module",
"exports": {
".": "./dist/index.mjs",
"./helpers": "./dist/helpers/index.mjs"
},
"scripts": {
"build": "npx tsc",
"test": "npx tsc -p tsconfig-tests.json && npx c8 -r html mocha ./tests-build/tests/*.test.js",
"test-cleanup": "rm -rf ./tests-build",
"test-n-cleanup": "npm run test; npm run test-cleanup",
"lint": "npx eslint .",
"check-coverage": "npm run build && node ./helpers/check-coverage.js",
"generate-readme": "npm run build && node ./helpers/generate-readme.js",
"generate-docs": "npx typedoc",
"example1": "npm run build && node ./examples/example1.js",
"example2": "npm run build && node ./examples/example2.js",
"example:function": "npm run build && node ./examples/example-function.js",
"example:function-call": "npm run build && node ./examples/example-function-call.js",
"example:command": "npm run build && node ./examples/example-command.js",
"example:if": "npm run build && node ./examples/example-if.js",
"example:while": "npm run build && node ./examples/example-while.js",
"example:until": "npm run build && node ./examples/example-until.js",
"example:for": "npm run build && node ./examples/example-for.js",
"example:select": "npm run build && node ./examples/example-select.js",
"example:case": "npm run build && node ./examples/example-case.js",
"example:dump-config": "npm run build && node ./examples/example-dump-config.js",
"example:add": "npm run build && node ./examples/example-add.js",
"example:remove": "npm run build && node ./examples/example-remove.js",
"example:alter": "npm run build && node ./examples/example-alter.js",
"example:chain": "npm run build && node ./examples/example-chain.js",
"example:read": "npm run build && node ./examples/example-read.js",
"example:write": "npm run build && node ./examples/example-write.js",
"example:append": "npm run build && node ./examples/example-append.js",
"example:pipe": "npm run build && node ./examples/example-pipe.js",
"example:variable": "npm run build && node ./examples/example-variable.js",
"example:and": "npm run build && node ./examples/example-and.js",
"example:or": "npm run build && node ./examples/example-or.js",
"example:subshell": "npm run build && node ./examples/example-subshell.js",
"example:condition": "npm run build && node ./examples/example-condition.js"
},
"author": "monstermichl",
"license": "MIT",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^5.2.3",
"@types/mocha": "^10.0.10",
"@types/node": "^24.10.1",
"@types/uuid": "^11.0.0",
"@typescript-eslint/eslint-plugin": "^8.48.1",
"c8": "^10.1.3",
"chai": "^6.2.1",
"eslint": "^9.39.1",
"mocha": "^11.7.5",
"nodemon": "^3.1.11",
"ts-node": "^10.9.2",
"typedoc": "^0.28.15",
"typescript": "^5.9.3"
},
"files": [
"dist/**/*"
],
"keywords": [
"bourne",
"bash",
"shell",
"generator",
"builder",
"typescript",
"dynamically",
"chainable"
],
"repository": {
"type": "git",
"url": "https://github.com/monstermichl/shell-factory.git"
},
"dependencies": {
"uuid": "^13.0.0"
}
}