-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.74 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.74 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
{
"name": "@nekm/core",
"version": "1.0.0",
"description": "Code I find myself re-writing over-and-over.",
"license": "MIT",
"source": "./src/index.ts",
"types": "./dist/index.d.ts",
"exports": {
"import": "./dist/index.esm.js",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"main": "./dist/index.js",
"module": "./dist/index.esm.js",
"unpkg": "./dist/index.umd.js",
"scripts": {
"build": "microbundle --format cjs,esm,umd",
"test": "jest"
},
"maintainers": [
{
"email": "niklas@niklasekman.solutions",
"name": "Niklas Ekman",
"url": "https://www.niklasekman.solutions"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/Ekman/TypeScript-Core.git"
},
"homepage": "https://github.com/Ekman/TypeScript-Core#readme",
"files": [
"dist",
"src",
"bin"
],
"author": {
"name": "Niklas Ekman",
"email": "niklas@niklasekman.solutions"
},
"keywords": [
"core",
"utility",
"multi-lib"
],
"sideEffects": false,
"devDependencies": {
"@eslint/js": "^9",
"@tsconfig/recommended": "^1.0.10",
"@types/jest": "^30.0.0",
"@types/querystringify": "^2.0.2",
"@typescript-eslint/eslint-plugin": "^8.55.0",
"@typescript-eslint/parser": "^8.55.0",
"eslint": "^9",
"globals": "^17.3.0",
"jest": "^30.0.0",
"jest-junit": "^16.0.0",
"microbundle": "^0.15.1",
"mongodb": "^7",
"prettier": "^3.8.1",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
},
"dependencies": {
"empty-php": "^3",
"querystringify": "^2"
},
"peerDependencies": {
"mongodb": "^7"
},
"bin": {
"mongodb-create-indices": "./bin/mongodb-sync-indices.js"
}
}