-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.58 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": "@rickyli79/rich-json",
"version": "1.1.4",
"publishConfig": {
"access": "public"
},
"repository": {
"url": "https://github.com/RickyLi79/rich-json/"
},
"description": "Serialize and Deserialize javascript objects",
"main": "bin/index.js",
"scripts": {
"test": "mocha -r ts-node/register --reporter spec --colors test/**/*.test.ts",
"mochawesome": "mocha -r ts-node/register --config \"./test/.mocharc.js\"",
"build": "tsc -p tsconfig.build.json",
"--": "",
"preversion": "npm run mochawesome",
"postversion": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md docs package.json package-lock.json",
"prepublishOnly": "npm run mochawesome && npm run build"
},
"keywords": [
"JSON",
"serialize",
"deserialize",
"clone",
"circular"
],
"author": {
"email": "382688672@qq.com",
"name": "RickyLi79",
"url": "https://github.com/RickyLi79"
},
"license": "MIT",
"devDependencies": {
"@types/chai": "4.3.12",
"@types/jsonpath": "0.2.4",
"@types/mocha": "10.0.6",
"@types/node": "~16.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"chai": "4.3.9",
"eslint-config-egg": "^13.1.0",
"glob": "~10.3.10",
"mocha": "10.3.0",
"mochawesome": "^7.1.3",
"ts-node": "^10.9.2",
"type-fest": "^4.11.1",
"typescript": "^5.3.3"
},
"dependencies": {
"jsonpath": "1.1.1"
},
"config": {
"cz-customizable": {
"config": ".cz-config.js"
},
"commitizen": {
"path": "cz-customizable"
}
},
"files": [
"bin"
]
}