-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.77 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
{
"name": "bshell",
"version": "0.0.2",
"description": "Provide extra portable Unix shell commands for Node.js with chaining.",
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"exports": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest",
"build": "rm -rf ./dist && npm run build:esm && npm run build:cjs",
"build:esm": "./node_modules/.bin/tsc --project tsconfig.build.json --module esnext --outDir dist/esm",
"build:cjs": "./node_modules/.bin/tsc --project tsconfig.build.json --module commonjs --outDir dist/cjs",
"prepublishOnly": "npm run test && npm run build",
"postpublish": "node scripts/postPublish.mjs"
},
"keywords": [
"bshell",
"nodejs",
"node",
"bash",
"shell",
"linux",
"unix",
"bsd"
],
"author": {
"name": "Thomas Leung",
"email": "[email protected]",
"url": "https://github.com/avennn"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/avennn/bshell.git"
},
"bugs": {
"url": "https://github.com/avennn/bshell/issues"
},
"homepage": "https://github.com/avennn/bshell#readme",
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/jest": "^29.5.1",
"@types/node": "^18.16.3",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
},
"dependencies": {
"auto-bind": "^5.0.1"
}
}