-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.9 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
{
"name": "node-terminal-simulator",
"version": "2.0.0",
"description": "Simulate and assert the terminal output including many special ANSI codes",
"author": {
"name": "Janik Schumacher (LoaderB0T)",
"url": "https://awdware.de"
},
"homepage": "https://github.com/LoaderB0T/node-terminal-simulator",
"bugs": {
"url": "https://github.com/LoaderB0T/node-terminal-simulator/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/LoaderB0T/node-terminal-simulator.git"
},
"main": "./lib/src/index.js",
"exports": {
".": {
"import": "./lib/src/index.js"
}
},
"type": "module",
"files": [
"lib"
],
"scripts": {
"preinstall": "npx only-allow pnpm",
"lint": "pnpm eslint ./src/**",
"test": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js",
"prebuild": "pnpm rimraf lib",
"build": "tsc -p ."
},
"license": "MIT",
"private": false,
"devDependencies": {
"@awdware/eslint-config-base": "^2.1.1",
"@awdware/eslint-config-nodejs": "^2.0.0",
"@awdware/prettier-config": "^1.0.0",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.10",
"chalk": "^5.4.1",
"eslint": "^9.22.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-unused-imports": "4.1.4",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"legally": "^3.5.10",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"typescript": "^5.8.2",
"typescript-eslint": "8.26.1"
},
"prettier": "@awdware/prettier-config",
"keywords": [
"node",
"nodejs",
"terminal",
"console",
"emulator",
"simulator",
"ansi",
"escapes",
"test",
"assert",
"string"
],
"packageManager": "[email protected]+sha512.b2dc20e2fc72b3e18848459b37359a32064663e5627a51e4c74b2c29dd8e8e0491483c3abb40789cfd578bf362fb6ba8261b05f0387d76792ed6e23ea3b1b6a0"
}