1 | {
|
2 | "name": "json-stable-stringify",
|
3 | "version": "1.2.1",
|
4 | "description": "deterministic JSON.stringify() with custom sorting to get deterministic hashes from stringified results",
|
5 | "main": "index.js",
|
6 | "scripts": {
|
7 | "prepack": "npmignore --auto --commentLines=autogenerated",
|
8 | "prepublishOnly": "safe-publish-latest",
|
9 | "prepublish": "not-in-publish || npm run prepublishOnly",
|
10 | "lint": "eslint --ext=js,mjs .",
|
11 | "postlint": "tsc && attw -P",
|
12 | "pretest": "npm run lint",
|
13 | "tests-only": "tape 'test/**/*.js'",
|
14 | "test": "npm run tests-only",
|
15 | "posttest": "npx npm@'>= 10.2' audit --production",
|
16 | "version": "auto-changelog && git add CHANGELOG.md",
|
17 | "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
|
18 | },
|
19 | "repository": {
|
20 | "type": "git",
|
21 | "url": "git://github.com/ljharb/json-stable-stringify.git"
|
22 | },
|
23 | "keywords": [
|
24 | "json",
|
25 | "stringify",
|
26 | "deterministic",
|
27 | "hash",
|
28 | "sort",
|
29 | "stable"
|
30 | ],
|
31 | "author": {
|
32 | "name": "James Halliday",
|
33 | "email": "mail@substack.net",
|
34 | "url": "http://substack.net"
|
35 | },
|
36 | "license": "MIT",
|
37 | "bugs": {
|
38 | "url": "https://github.com/ljharb/json-stable-stringify/issues"
|
39 | },
|
40 | "homepage": "https://github.com/ljharb/json-stable-stringify",
|
41 | "funding": {
|
42 | "url": "https://github.com/sponsors/ljharb"
|
43 | },
|
44 | "dependencies": {
|
45 | "call-bind": "^1.0.8",
|
46 | "call-bound": "^1.0.3",
|
47 | "isarray": "^2.0.5",
|
48 | "jsonify": "^0.0.1",
|
49 | "object-keys": "^1.1.1"
|
50 | },
|
51 | "devDependencies": {
|
52 | "@arethetypeswrong/cli": "^0.17.2",
|
53 | "@ljharb/eslint-config": "^21.1.1",
|
54 | "@ljharb/tsconfig": "^0.2.2",
|
55 | "@types/call-bind": "^1.0.5",
|
56 | "@types/isarray": "^2.0.3",
|
57 | "@types/object-keys": "^1.0.3",
|
58 | "@types/tape": "^5.8.0",
|
59 | "auto-changelog": "^2.5.0",
|
60 | "encoding": "^0.1.13",
|
61 | "eslint": "=8.8.0",
|
62 | "in-publish": "^2.0.1",
|
63 | "npmignore": "^0.3.1",
|
64 | "safe-publish-latest": "^2.0.0",
|
65 | "tape": "^5.9.0",
|
66 | "typescript": "next"
|
67 | },
|
68 | "engines": {
|
69 | "node": ">= 0.4"
|
70 | },
|
71 | "testling": {
|
72 | "files": "test/*.js"
|
73 | },
|
74 | "auto-changelog": {
|
75 | "output": "CHANGELOG.md",
|
76 | "template": "keepachangelog",
|
77 | "unreleased": false,
|
78 | "commitLimit": false,
|
79 | "backfillLimit": false,
|
80 | "hideCredit": true
|
81 | },
|
82 | "publishConfig": {
|
83 | "ignore": [
|
84 | ".github/workflows",
|
85 | "types"
|
86 | ]
|
87 | }
|
88 | }
|