forked from justinlettau/ts-dot-prop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.63 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
73
74
75
{
"name": "ts-dot-prop",
"version": "2.0.1",
"description": "TypeScript utility to transform nested objects using a dot notation path.",
"keywords": [
"access",
"del",
"delete",
"dot notation",
"dot",
"dotty",
"get",
"notation",
"obj",
"object",
"path",
"prop",
"property",
"set",
"transform",
"typescript"
],
"author": {
"name": "Justin Lettau",
"email": "[email protected]",
"url": "https://justinlettau.com"
},
"license": "MIT",
"homepage": "https://github.com/justinlettau/ts-dot-prop",
"repository": {
"type": "git",
"url": "https://github.com/justinlettau/ts-dot-prop"
},
"bugs": {
"url": "https://github.com/justinlettau/ts-dot-prop"
},
"scripts": {
"build": "tsc -p ./tsconfig.json",
"lint": "eslint . --ext .js,.ts",
"test": "jest",
"release": "standard-version",
"format": "prettier --write ."
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"type": "module",
"exports": "./dist/index.js",
"types": "dist/index.d.js",
"files": [
"dist/"
],
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"jest": "^27.3.1",
"prettier": "^2.4.1",
"pretty-quick": "^3.1.1",
"standard-version": "^9.3.2",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
},
"dependencies": {
"ts-util-is": "^2.0.0"
}
}