-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.94 KB
/
Copy pathpackage.json
File metadata and controls
122 lines (122 loc) · 3.94 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
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
{
"name": "@stackline/dev-null",
"version": "1.0.0",
"description": "Zero-dependency Node.js writable sink with exact dev-null compatibility and first-party types",
"type": "commonjs",
"main": "./index.js",
"module": "./index.mjs",
"types": "./index.d.ts",
"exports": {
".": {
"types": {
"import": "./index.d.mts",
"require": "./index.d.cts",
"default": "./index.d.ts"
},
"import": "./index.mjs",
"require": "./index.js",
"default": "./index.js"
},
"./index": {
"types": {
"import": "./index.d.mts",
"require": "./index.d.cts",
"default": "./index.d.ts"
},
"import": "./index.mjs",
"require": "./index.js",
"default": "./index.js"
},
"./index.js": {
"types": {
"import": "./index.d.mts",
"require": "./index.d.cts",
"default": "./index.d.ts"
},
"import": "./index.mjs",
"require": "./index.js",
"default": "./index.js"
},
"./package.json": "./package.json"
},
"sideEffects": false,
"files": [
"index.js",
"index.mjs",
"index.d.ts",
"index.d.cts",
"index.d.mts",
"examples",
"CHANGELOG.md",
"LICENSE",
"NOTICE",
"README.md",
"SECURITY.md",
"THIRD_PARTY_LICENSES.md"
],
"scripts": {
"clean": "node scripts/clean.mjs",
"build": "node scripts/build.mjs",
"lint": "eslint index.js index.mjs scripts test docs-site",
"test:upstream": "node --test test/upstream.test.js",
"test:compatibility": "node --test test/compatibility.test.js",
"test:differential": "node test/differential.js",
"test:esm": "node test/esm.mjs",
"test:types": "node node_modules/typescript-3-9/bin/tsc -p test/types/tsconfig.legacy.json && node node_modules/typescript/bin/tsc -p test/types/tsconfig.commonjs.json && node node_modules/typescript/bin/tsc -p test/types/tsconfig.modern.json",
"test:runtime": "node test/runtime-compat.js",
"test": "npm run test:upstream && npm run test:compatibility && npm run test:differential && npm run test:esm && npm run test:types && npm run test:runtime",
"test:coverage": "c8 --all --include=index.js --check-coverage --lines 100 --functions 100 --branches 100 node --test test/upstream.test.js test/compatibility.test.js",
"test:smoke": "node scripts/smoke-install.mjs",
"test:registry": "node scripts/smoke-registry.mjs",
"test:docs": "npm run docs:build && node scripts/check-docs.mjs",
"check:package": "publint && attw --pack .",
"pack:check": "npm pack --dry-run",
"audit:dependencies": "npm audit --omit=dev --audit-level=low",
"audit:signatures": "npm audit signatures",
"docs:build": "npm run build && node scripts/build-docs.mjs",
"docs:serve": "node scripts/serve-docs.mjs",
"verify": "npm run clean && npm run lint && npm run build && npm test && npm run test:coverage && npm run test:smoke && npm run check:package && npm run pack:check && npm run test:docs && npm run audit:dependencies",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexandroit/stackline-dev-null.git"
},
"homepage": "https://alexandro.net/docs/vanilla/dev-null/",
"bugs": {
"url": "https://github.com/alexandroit/stackline-dev-null/issues"
},
"keywords": [
"dev-null",
"writable",
"streams",
"sink",
"discard",
"object-mode",
"zero-dependency",
"typescript",
"stackline"
],
"author": "Stackline Maintainers",
"contributors": [
"Thorsten Lorenz"
],
"license": "MIT",
"engines": {
"node": ">=12"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.18.5",
"@eslint/js": "10.0.1",
"@types/node": "14.18.63",
"c8": "12.0.0",
"dev-null-baseline": "npm:dev-null@0.1.1",
"eslint": "10.9.1",
"publint": "0.3.24",
"typescript": "7.0.2",
"typescript-3-9": "npm:typescript@3.9.10"
}
}