forked from OpenINF/openinf-util-object
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.5 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.5 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
{
"name": "@openinf/util-object",
"version": "2.0.1",
"engines": {
"node": "^14.15.0 || ^16.13.0 || ^18.12.0",
"npm": "^6.14.8 || ^8.1.0 || ^8.19.2 || ^9.0.0",
"npx": "^6.14.8 || ^8.1.0 || ^8.19.2 || ^9.0.0"
},
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"prepare": "npm run compile-src && npm run compile-doc",
"compile-src": "tsc --project ./",
"compile-doc": "",
"test": "npx jasmine"
},
"repository": "openinf/util-object",
"keywords": ["JavaScript", "Object", "type", "utilities"],
"author": "The OpenINF Authors",
"license": "MIT",
"bugs": "https://github.com/openinf/util-object/issues",
"homepage": "https://github.com/openinf/util-object#readme",
"description": "Common JavaScript Object type-related utilities",
"devDependencies": {
"@types/node": "18.14.0",
"@typescript-eslint/eslint-plugin": "5.53.0",
"@typescript-eslint/parser": "5.53.0",
"chai": "4.3.7",
"eslint": "8.34.0",
"eslint-config-prettier": "8.6.0",
"eslint-import-resolver-node": "0.3.7",
"eslint-plugin-etc": "2.0.2",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-regexp": "1.12.0",
"eslint-plugin-simple-import-sort": "10.0.0",
"eslint-plugin-unicorn": "45.0.2",
"eslint-plugin-wix-editor": "3.3.0",
"jasmine": "4.5.0",
"prettier": "2.8.4",
"typescript": "4.9.5"
},
"dependencies": {
"@openinf/util-types": "2.1.3"
}
}