-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
127 lines (127 loc) · 3.94 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
126
127
{
"name": "@xpack/mock-console",
"version": "1.0.0",
"description": "A Node.js CommonJS/ES6 module with a mock console",
"type": "commonjs",
"exports": {
"node": {
"import": "./esm/index.js",
"require": "./cjs/index.js"
},
"types": "./cjs/index.d.ts",
"default": "./cjs/index.js"
},
"main": "./cjs/index.js",
"module": "./esm/index.js",
"types": "./cjs/index.d.ts",
"scripts": {
"compile-watch": "tsc --build --verbose --watch src",
"fix": "ts-standard --fix src tests && standard esm",
"compile": "tsc --build --verbose src",
"npm-install": "npm install",
"npm-link": "npm link",
"npm-link-deps": "npm link @xpack/docusaurus-template-liquid",
"npm-outdated": "npm outdated",
"npm-update": "npm update",
"npm-version-patch": "npm version patch",
"npm-version-minor": "npm version minor",
"postversion": "git push origin --all && git push origin --tags",
"npm-pack": "npm pack",
"git-log": "git log --pretty='%cd * %h %s' --date=short",
"lint": "ts-standard src && standard esm",
"prepare": "npm run compile && npm run lint",
"pretest": "npm run lint",
"pretest-100": "npm run lint",
"pretest-100-c8": "npm run lint",
"tap": "tap --reporter=spec",
"tap-c8": "c8 tap --reporter=spec",
"test-tap": "tap",
"test-tap-coverage": "tap --coverage",
"test-tap-coverage-c8": "c8 -- tap",
"test-tap-coverage-100": "tap --coverage --100",
"test-tap-coverage-100-c8": "c8 --100 -- tap",
"test": "npm run test-tap -s",
"test-100": "npm run test-tap-coverage-100 -s",
"test-100-c8": "npm run test-tap-coverage-100-c8 -s",
"dev-cycle": "npm run fix && npm run compile && npm run test-100-c8",
"clean": "del-cli cjs 'tests/**/cjs' 'src/**/*.d.ts' 'src/**/*.d.ts.map' 'src/**/*.js' 'src/**/*.js.map' 'tests/**/*.d.ts' 'tests/**/*.d.ts.map' 'tests/**/*.js' 'tests/**/*.js.map' '**/tsconfig.tsbuildinfo' .nyc_output coverage",
"deep-clean": "npm run clean && rm -rf node_modules package-lock.json",
"npm-version": "echo $(which node) $(node --version) && echo $(which npm) $(npm --version)",
"website-generate-commons": "bash node_modules/@xpack/docusaurus-template-liquid/maintenance-scripts/generate-commons.sh",
"website-generate-blog-post": "bash node_modules/@xpack/docusaurus-template-liquid/maintenance-scripts/generate-blog-post.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xpack/mock-console-ts.git"
},
"keywords": [
"cli",
"logger",
"mock",
"console"
],
"author": {
"name": "Liviu Ionescu",
"email": "[email protected]",
"url": "https://github.com/ilg-ul"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/xpack/mock-console-ts/issues"
},
"homepage": "https://xpack.github.io/mock-console-ts/",
"dependencies": {},
"devDependencies": {
"@types/node": "^18.11.9",
"@types/tap": "^15.0.12",
"c8": "^7.13.0",
"del-cli": "^6.0.0",
"standard": "^17.1.2",
"tap": "^16.3.10",
"ts-node": "^10.9.2",
"ts-standard": "^12.0.2",
"typedoc": "^0.26.10",
"typescript": "^4.9.5"
},
"bundledDependencies": [],
"tap": {
"check-coverage": false,
"coverage": false,
"files": [
"tests/tap/010-mock-console.ts",
"tests/tap/020-utils.ts"
],
"node-arg": [
"--loader=ts-node/esm"
],
"reporter": "classic",
"timeout": 30,
"ts": true
},
"eslintConfig": {
"rules": {
"max-len": [
"error",
80,
{
"ignoreUrls": true
}
]
}
},
"ts-standard": {
"ignore": [
"**/*.d.ts",
"**/*.js"
]
},
"engines": {
"node": " >=18.0.0"
},
"websiteConfig": {
"name": "Mock Console",
"title": "mock-console - The xPack Mock Console",
"metadataDescription": "A Node.js CommonJS/ES6 module with a mock console",
"metadataKeywords": "xpm, xpack, build, test, dependencies, npm, reproducibility"
}
}