-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.25 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.25 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
{
"name": "@wherejuly/null-object",
"version": "1.0.2",
"description": "The tiny polymorphic noop-behavior object to stub actual objects conditionally.",
"type": "module",
"main": "./code/index.js",
"module": "./code/index.js",
"types": "./types/index.d.ts",
"scripts": {
"test:foundation": "npm run check-types && vitest run --config tests/foundation/.ancillary/config/vitest.config.ts",
"check-types": "npx tsc --noEmit --project .",
"package:build": "tsx .delivery/scripts/build.ts",
"lint": "npx eslint ./src && npx eslint ./.usage",
"package:de-alias": "npx tsc-alias -p ./.delivery/configuration/tsconfig.json --verbose",
"package:bundle:copy": "cpy ./package.json ./LICENSE ./readme.md ./.delivery/.builds/dist",
"package:pack": "cd ./.delivery/.builds/dist && npm pack",
"package:test:usage": "cd .usage && npm run test:usage",
"package:lint:readme": "npx markdown-link-check --progress --quiet ./readme.md",
"package:publish": "npm publish ./.delivery/.builds/dist"
},
"author": {
"name": "Valentine Shi",
"email": "valentineshi.dev@gmail.com",
"url": "https://valentineshi.dev"
},
"license": "MIT",
"homepage": "https://github.com/WhereJuly/68-null-object#readme",
"issues": "https://github.com/WhereJuly/68-null-object/issues",
"keywords": [
"null-object",
"noop object",
"noop behavior",
"chainable noop",
"noop method",
"stub property",
"polymorphic",
"substitute",
"fallback",
"stub",
"fake",
"dummy",
"noop function",
"typescript"
],
"devDependencies": {
"@eslint/js": "^9.29.0",
"@tsconfig/node20": "^20.1.6",
"@types/node": "^22.15.32",
"@typescript-eslint/eslint-plugin": "^8.34.1",
"@typescript-eslint/parser": "^8.34.1",
"@vitest/coverage-v8": "^3.2.4",
"cpy-cli": "^5.0.0",
"eslint": "^9.29.0",
"markdown-link-check": "^3.13.7",
"rimraf": "^6.0.1",
"tsc-alias": "^1.8.16",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.34.1",
"vitest": "^3.2.4"
}
}