forked from OpenINF/openinf-util-object
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.46 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
{
"name": "@openinf/util-object",
"version": "2.0.1",
"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": "jsdoc2md --template README.hbs --files lib/index.js > ./README.md",
"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.8.4",
"@typescript-eslint/eslint-plugin": "5.40.0",
"@typescript-eslint/parser": "5.40.0",
"chai": "4.3.6",
"eslint": "8.25.0",
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-node": "0.3.6",
"eslint-plugin-etc": "2.0.2",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-only-warn": "1.0.3",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.0.1",
"eslint-plugin-regexp": "1.9.0",
"eslint-plugin-simple-import-sort": "8.0.0",
"eslint-plugin-unicorn": "44.0.2",
"eslint-plugin-wix-editor": "3.3.0",
"jasmine": "4.4.0",
"jsdoc-to-markdown": "7.1.1",
"prettier": "2.7.1",
"typescript": "4.8.4"
},
"dependencies": {
"@openinf/util-types": "2.1.3"
}
}