-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.43 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.43 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "preszr",
"version": "2.4.0",
"description": "Shove arbitrary JavaScript objects through the pipes.",
"keywords": [
"object-graph",
"graph",
"serialize",
"deserialize",
"serialization",
"json.stringify",
"circular",
"prototype"
],
"homepage": "https://github.com/GregRos/preszr",
"repository": "github:GregRos/preszr",
"license": "MIT",
"author": "GregRos",
"main": "dist/lib/index.js",
"typings": "dist/lib/index",
"scripts": {
"clean": "shx rm -rf dist/",
"build": "node tools/create-version-stub.cjs && tsc -b tsconfig.all.json",
"build:clean": "run-s clean build",
"prettier:fix": "prettier --write .",
"prettier": "prettier --check 'src/**/*.ts'",
"eslint": "eslint 'src/**/*.ts'",
"eslint:fix": "eslint --fix 'src/**/*.ts'",
"lint:check": "run-s -c prettier eslint",
"lint:fix": "run-s prettier:fix eslint:fix",
"test": "nyc ava",
"test:no-cover": "ava",
"watch": "node tools/create-version-stub.cjs && tsc -b tsconfig.all.json -w",
"docs": "node dist/generate-docs/run.js",
"tidy": "yarn install && run-s build:clean lint:fix test"
},
"ava": {
"extensions": [],
"files": [
"src/test/tests/**/*.ts"
],
"require": [
"./dist/test/setup.js"
],
"timeout": "30s",
"typescript": {
"rewritePaths": {
"src/": "dist/"
},
"compile": false
},
"workerThreads": false
},
"nyc": {
"all": true,
"extension": [
".ts",
".js"
],
"include": [
"src/lib/**/*.ts",
"dist/lib/**/*.js"
],
"produce-source-map": true,
"reporter": [
"lcov",
"text",
"text-summary",
"html"
],
"sourceMap": true
},
"dependencies": {
"base64-js": "^1.5.1"
},
"devDependencies": {
"@ava/typescript": "^3.0.1",
"@gregros/eslint-config": "^0.6.0",
"@types/lodash": "^4.14.185",
"@types/node": "^17.0.45",
"@typescript-eslint/eslint-plugin": "7.6.0",
"@typescript-eslint/parser": "7.6.0",
"ava": "^4.3.3",
"eslint": "^8",
"lodash": "^4.17.21",
"npm-run-all": "^4.1.5",
"nyc": "^15.0.0",
"prettier": "^3",
"prettier-plugin-jsdoc": "^1.3.0",
"prettier-plugin-organize-imports": "^4.0.0",
"prettier-plugin-packagejson": "^2.5.2",
"shelljs": "^0.8.5",
"shx": "^0.3.4",
"tsconfig-paths": "^3.14.1",
"typescript": "^5.5.4"
},
"packageManager": "[email protected]"
}