-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.09 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
{
"name": "@tsxper/cyclic-object",
"version": "1.0.0",
"description": "Convert cyclic object to JSON with replacement",
"scripts": {
"test": "jest",
"test:ci": "jest --ci --coverage",
"lint": "eslint src",
"lint:fix": "eslint --fix src",
"build": "make build",
"pub": "make pub"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tsxper/cyclic-object.git"
},
"author": "Vladyslav Babak",
"license": "MIT",
"main": "index.js",
"types": "./types/index.d.ts",
"exports": {
"import": "./esm/index.js",
"require": "./cjs/index.js",
"default": "./esm/index.js"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"cyclic",
"circular",
"object",
"references",
"replace",
"json"
],
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^20.9.2",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}