-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.61 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
{
"name": "object-utils-js",
"description": "A collection of utilities dealing with object",
"version": "1.1.1",
"repository": {
"type": "git",
"url": "https://github.com/zielinskipawel/object-utils-js"
},
"author": "Pawel Zielinski(https://github.com/zielinskipawel)",
"devDependencies": {
"@babel/preset-env": "^7.16.0",
"@types/jest": "^27.0.2",
"@typescript-eslint/parser": "^5.3.1",
"babel-loader": "^8.2.3",
"jest": "^27.3.1",
"path": "^0.12.7",
"prettier": "^2.4.1",
"terser-webpack-plugin": "^5.2.5",
"ts-jest": "^27.0.7",
"ts-loader": "^9.2.6",
"typescript": "^4.4.4",
"webpack": "^5.64.0",
"webpack-cli": "^4.9.1"
},
"dependencies": {},
"scripts": {
"dev": "webpack --mode development --config webpack.config.js",
"build": "webpack --mode production --config webpack.config.js",
"test": "jest --env=jsdom --no-cache --watchAll --verbose",
"prepublish": "npm run build"
},
"license": "MIT",
"files": [
"public"
],
"main": "./public/index.js",
"types": "./public/index.d.ts",
"keywords": [
"check",
"is",
"is-object",
"isobject",
"to-object",
"toobject",
"javascript",
"kind",
"kind-of",
"object",
"type",
"typeof",
"instanceof",
"value",
"null",
"ts",
"typescript",
"test",
"tested",
"webpack",
"babel",
"ES5",
"CommonJS"
]
}