File size: 2,903 Bytes
7c5b7bd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
99
100
101
102
103
104
105
106
107
{
  "name": "@jsonjoy.com/util",
  "private": false,
  "publishConfig": {
    "access": "public"
  },
  "version": "1.1.3",
  "description": "Various helper utilities",
  "author": {
    "name": "streamich",
    "url": "https://github.com/streamich"
  },
  "homepage": "https://github.com/jsonjoy-com/util",
  "repository": "jsonjoy-com/util",
  "license": "Apache-2.0",
  "funding": {
    "type": "github",
    "url": "https://github.com/sponsors/streamich"
  },
  "keywords": [
    "codegen",
    "buffer",
    "string",
    "utf8",
    "json",
    "json-equal",
    "json-brand",
    "json-random",
    "fuzzer"
  ],
  "engines": {
    "node": ">=10.0"
  },
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "typings": "lib/index.d.ts",
  "files": [
    "LICENSE",
    "lib/"
  ],
  "scripts": {
    "prettier": "prettier --ignore-path .gitignore --write \"src/**/*.{ts,tsx,js,jsx}\"",
    "prettier:check": "prettier --ignore-path .gitignore --list-different 'src/**/*.{ts,tsx,js,jsx}'",
    "lint": "yarn tslint",
    "tslint": "tslint 'src/**/*.{js,jsx,ts,tsx}' -t verbose --project .",
    "clean": "rimraf lib typedocs coverage gh-pages yarn-error.log",
    "build": "tsc --project tsconfig.build.json --module commonjs --target es2020 --outDir lib",
    "jest": "node -r ts-node/register ./node_modules/.bin/jest",
    "test": "jest --maxWorkers 7",
    "test:ci": "yarn jest --maxWorkers 3 --no-cache",
    "coverage": "yarn test --collectCoverage",
    "typedoc": "typedoc",
    "build:pages": "rimraf gh-pages && mkdir -p gh-pages && cp -r typedocs/* gh-pages && cp -r coverage gh-pages/coverage",
    "deploy:pages": "gh-pages -d gh-pages",
    "publish-coverage-and-typedocs": "yarn typedoc && yarn coverage && yarn build:pages && yarn deploy:pages"
  },
  "peerDependencies": {
    "tslib": "2"
  },
  "dependencies": {},
  "devDependencies": {
    "@types/benchmark": "^2.1.2",
    "@types/jest": "^29.5.12",
    "benchmark": "^2.1.4",
    "jest": "^29.7.0",
    "json-pack-napi": "^0.0.2",
    "prettier": "^3.2.5",
    "pretty-quick": "^3.1.3",
    "rimraf": "^5.0.0",
    "ts-jest": "^29.1.2",
    "ts-node": "^10.9.2",
    "tslib": "^2.6.2",
    "tslint": "^6.1.3",
    "tslint-config-common": "^1.6.2",
    "typedoc": "^0.25.12",
    "typescript": "^5.4.4"
  },
  "jest": {
    "verbose": true,
    "testEnvironmentOptions": {
      "url": "http://localhost/"
    },
    "setupFiles": [
      "<rootDir>/src/__tests__/setup.js"
    ],
    "moduleFileExtensions": [
      "ts",
      "js"
    ],
    "transform": {
      "^.+\\.ts$": "ts-jest"
    },
    "transformIgnorePatterns": [],
    "testRegex": ".*/(__tests__|__jest__|demo)/.*\\.(test|spec)\\.ts$"
  },
  "prettier": {
    "arrowParens": "always",
    "printWidth": 120,
    "tabWidth": 2,
    "useTabs": false,
    "semi": true,
    "singleQuote": true,
    "trailingComma": "all",
    "bracketSpacing": false
  }
}