-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.54 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
{
"name": "notation",
"version": "3.0.0",
"description": "Utility for modifying / processing the contents of Javascript objects or arrays via object notation strings or globs.",
"repository": "onury/notation",
"license": "MIT",
"author": {
"name": "Onur Yıldırım",
"email": "onur@cutepilot.com"
},
"type": "module",
"main": "./lib/index.js",
"module": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js",
"default": "./lib/index.js"
},
"./package.json": "./package.json"
},
"sideEffects": false,
"files": [
"lib",
"LICENSE"
],
"engines": {
"node": ">=20"
},
"scripts": {
"lint": "biome check src test",
"format": "biome check --write src test",
"build": "tsc --project tsconfig.build.json",
"pretest": "npm run lint",
"test": "vitest run",
"cover": "vitest run --coverage",
"mutation": "stryker run",
"prepublishOnly": "npm run build"
},
"keywords": [
"object",
"array",
"notation",
"dot-notation",
"property",
"bracket",
"glob",
"pointer",
"enumerable",
"template",
"placeholder",
"data",
"value",
"parse",
"build"
],
"devDependencies": {
"@biomejs/biome": "^2.5.0",
"@stryker-mutator/core": "^9.6.1",
"@stryker-mutator/vitest-runner": "^9.6.1",
"@types/node": "^25.9.3",
"@vitest/coverage-istanbul": "^4.1.8",
"tsconfig-oy": "^1.1.0",
"typescript": "^6.0.3",
"vitest": "^4.1.8"
}
}