source: node_modules/json-stable-stringify/package.json

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 2.0 KB
RevLine 
[d24f17c]1{
2 "name": "json-stable-stringify",
3 "version": "1.1.1",
4 "description": "deterministic JSON.stringify() with custom sorting to get deterministic hashes from stringified results",
5 "main": "index.js",
6 "dependencies": {
7 "call-bind": "^1.0.5",
8 "isarray": "^2.0.5",
9 "jsonify": "^0.0.1",
10 "object-keys": "^1.1.1"
11 },
12 "devDependencies": {
13 "@ljharb/eslint-config": "^21.1.0",
14 "aud": "^2.0.4",
15 "auto-changelog": "^2.4.0",
16 "eslint": "=8.8.0",
17 "in-publish": "^2.0.1",
18 "npmignore": "^0.3.0",
19 "safe-publish-latest": "^2.0.0",
20 "tape": "^5.7.3"
21 },
22 "scripts": {
23 "prepack": "npmignore --auto --commentLines=autogenerated",
24 "prepublishOnly": "safe-publish-latest",
25 "prepublish": "not-in-publish || npm run prepublishOnly",
26 "lint": "eslint --ext=js,mjs .",
27 "pretest": "npm run lint",
28 "tests-only": "tape 'test/**/*.js'",
29 "test": "npm run tests-only",
30 "posttest": "aud --production",
31 "version": "auto-changelog && git add CHANGELOG.md",
32 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
33 },
34 "testling": {
35 "files": "test/*.js",
36 "browsers": [
37 "ie/8..latest",
38 "ff/5",
39 "ff/latest",
40 "chrome/15",
41 "chrome/latest",
42 "safari/latest",
43 "opera/latest"
44 ]
45 },
46 "repository": {
47 "type": "git",
48 "url": "git://github.com/ljharb/json-stable-stringify.git"
49 },
50 "homepage": "https://github.com/ljharb/json-stable-stringify",
51 "keywords": [
52 "json",
53 "stringify",
54 "deterministic",
55 "hash",
56 "sort",
57 "stable"
58 ],
59 "author": {
60 "name": "James Halliday",
61 "email": "mail@substack.net",
62 "url": "http://substack.net"
63 },
64 "funding": {
65 "url": "https://github.com/sponsors/ljharb"
66 },
67 "license": "MIT",
68 "engines": {
69 "node": ">= 0.4"
70 },
71 "auto-changelog": {
72 "output": "CHANGELOG.md",
73 "template": "keepachangelog",
74 "unreleased": false,
75 "commitLimit": false,
76 "backfillLimit": false,
77 "hideCredit": true
78 },
79 "publishConfig": {
80 "ignore": [
81 ".github/workflows"
82 ]
83 }
84}
Note: See TracBrowser for help on using the repository browser.