-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.31 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.31 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
{
"author": "heap-code",
"bugs": {
"url": "https://github.com/heap-code/object-builder/issues"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"description": "Builder pattern for objects",
"devDependencies": {
"@compodoc/compodoc": "^1.1.23",
"@release-it/conventional-changelog": "^10.0.0",
"@types/jest": "^30.0.0",
"@types/webpack-node-externals": "^3.0.4",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-etc": "^2.0.3",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.6.3",
"eslint-plugin-jsdoc": "^48.0.4",
"eslint-plugin-jsonc": "^2.13.0",
"eslint-plugin-markdownlint": "^0.9.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-sonarjs": "^0.25.0",
"eslint-plugin-sort-destructure-keys": "^1.5.0",
"eslint-plugin-sort-exports": "^0.9.1",
"eslint-plugin-sort-keys-plus": "^1.4.0",
"eslint-plugin-typescript-sort-keys": "^3.1.0",
"eslint-plugin-unicorn": "^52.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"eslint-plugin-yml": "^1.12.2",
"jest": "^29.7.0",
"jest-watch-typeahead": "^2.2.2",
"prettier": "^3.2.4",
"release-it": "^19.0.0",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsd": "^0.33.0",
"webpack": "^5.90.0",
"webpack-cli": "^7.0.0",
"webpack-node-externals": "^3.0.0"
},
"exports": {
".": {
"esm": "./dist/esm2022/index.js",
"esm2015": "./dist/esm2015/index.js",
"esm2022": "./dist/esm2022/index.js",
"esm5": "./dist/esm5/index.js",
"module": "./dist/esm5/index.js",
"types": "./dist/types/index.d.ts",
"default": "./dist/cjs/index.js"
}
},
"homepage": "https://github.com/heap-code/object-builder",
"keywords": [
"builder",
"builder-pattern",
"design-pattern",
"object",
"object-builder"
],
"license": "MIT",
"main": "./dist/cjs/index.js",
"module": "./dist/esm5/index.js",
"name": "@heap-code/object-builder",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/heap-code/object-builder.git"
},
"scripts": {
"build": "npm run build:cjs && npm run build:es2015 && npm run build:es2022 && npm run build:esm5 && npm run build:types && npm run build:umd",
"build:cjs": "npx tsc -p tools/tsconfigs/tsconfig.cjs.json",
"build:es2015": "npx tsc -p tools/tsconfigs/tsconfig.esm2015.json",
"build:es2022": "npx tsc -p tools/tsconfigs/tsconfig.esm2022.json",
"build:esm5": "npx tsc -p tools/tsconfigs/tsconfig.esm5.json",
"build:types": "npx tsc -p tools/tsconfigs/tsconfig.types.json",
"build:umd": "npx webpack",
"compodoc": "npm run compodoc:build -- -r 3080 -s",
"compodoc:build": "npx @compodoc/compodoc --disableInternal --disablePrivate -p ./tsconfig.build.json -d ./dist/compodoc",
"compodoc:coverage": "npm run compodoc:build -- --coverageTest 85 --silent",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"test": "jest --config jest.config.ts",
"test:coverage": "npm run test -- --coverage",
"test:types": "tsd -t test-d/index.d.ts -f test-d/index.test-d.ts",
"test:watch": "npm run test -- --watch"
},
"types": "./dist/types/index.d.ts",
"version": "0.1.3"
}