-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
72 lines (72 loc) · 2.12 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
{
"name": "json-object-keys",
"version": "0.1.25",
"description": "Manage complex object keys in depth",
"author": {
"name": "João Paulo Moraes",
"email": "[email protected]",
"url": "https://github.com/joaopaulomoraes"
},
"contributors": [
{
"name": "Fabio Ramos",
"email": "[email protected]",
"url": "https://github.com/fabioramos12"
},
{
"name": "Filipe Boechat",
"email": "[email protected]",
"url": "https://github.com/fboechats"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/joaopaulomoraes/json-object-keys.git"
},
"bugs": {
"url": "https://github.com/joaopaulomoraes/json-object-keys/issues",
"email": "[email protected]"
},
"main": "build/commonjs/src/index.js",
"module": "build/esm/src/index.js",
"types": "build/types/index.d.ts",
"scripts": {
"lint": "eslint src --max-warnings=0",
"typecheck": "tsc --project tsconfig.json --noEmit",
"format": "prettier src --write \"**/*.+(js|ts|json)\"",
"build": "bun build --minify index.ts --outdir build/umd --target node && bun run build:commonjs && bun run build:declaration",
"build:commonjs": "bun build --minify index.ts --outdir build/commonjs --target browser",
"build:declaration": "tsc --emitDeclarationOnly --project tsconfig.types.json",
"dev": "bun --watch src/index.ts",
"test": "bun test",
"test:watch": "bun --watch test",
"test:ci": "bun test",
"publish:npm": "pnpm publish --access public --no-git-checks"
},
"keywords": [
"json",
"objects",
"keys",
"values",
"remove",
"replace"
],
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"bun-types": "^1.0.2",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"pnpm": "^8.7.6",
"prettier": "^2.8.8",
"tsc-alias": "^1.8.6",
"typescript": "^5.1.3"
},
"files": [
"build"
],
"type": "module"
}