-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 974 Bytes
/
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
{
"name": "check-structure",
"version": "1.1.4",
"description": "Easily check the structure of any javascript object!",
"main": "index.js",
"types": "./types/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/drafolin/check-structure.git"
},
"keywords": [
"object",
"type",
"structure",
"interface",
"deep",
"comparison",
"check"
],
"scripts": {
"test": "mocha --require ts-node/register tests/**/*.test.ts"
},
"author": "drafolin",
"license": "ISC",
"bugs": {
"url": "https://github.com/drafolin/check-structure/issues"
},
"homepage": "https://github.com/drafolin/check-structure#readme",
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"ts-node": "^10.9.1"
},
"funding": [
{
"type": "buy me a coffee",
"url": "https://www.buymeacoffee.com/drafolin"
},
{
"type": "ko-fi",
"url": "https://ko-fi.com/drafolin"
}
]
}