-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.22 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
{
"name": "yadeep",
"version": "1.0.8",
"description": "Yet another deep JSON getter and setter",
"main": "dist/yadeep.js",
"typings": "dist/yadeep.d.ts",
"scripts": {
"build": "tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/terraindata/yadeep.git"
},
"keywords": [
"deep",
"JSON",
"objects",
"get",
"set",
"search"
],
"author": "Terrain Data, Inc.",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/terraindata/yadeep/issues"
},
"homepage": "https://github.com/terraindata/yadeep#readme",
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testPathIgnorePatterns": [
"node_modules",
"dist"
],
"testRegex": "/.+Tests\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
},
"files": [
"dist"
],
"dependencies": {
"deep-objectify": "^1.0.12",
"lodash": "^4.17.21",
"terrain-keypath": "^1.0.9"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/lodash": "^4.14.168",
"@types/node": "^15.0.2",
"jest": "^26.6.3",
"ts-jest": "^26.5.6",
"typescript": "^4.2.4"
}
}