This repository was archived by the owner on Dec 13, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.22 KB
/
Copy pathpackage.json
File metadata and controls
114 lines (114 loc) · 3.22 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@truestamp/canonify",
"type": "module",
"version": "1.1.1",
"author": "Truestamp <support@truestamp.com> (https://www.truestamp.com)",
"contributors": [
{
"name": "Truestamp Inc.",
"url": "https://www.truestamp.com"
},
{
"name": "cyberphone",
"url": "https://github.com/cyberphone/json-canonicalization"
},
{
"name": "erdtman",
"url": "https://github.com/erdtman/canonicalize"
}
],
"license": "MIT",
"description": "A tiny JSON canonicalize function written in Typescript. Creates crypto safe predictable canonicalization of JSON as defined by RFC8785 and is usable in Deno, Node.js, and browsers.",
"repository": {
"type": "git",
"url": "https://github.com/truestamp/truestamp-canonify.git"
},
"bugs": {
"url": "https://github.com/truestamp/truestamp-canonify/issues"
},
"homepage": "https://truestamp.github.io/truestamp-canonify",
"keywords": [
"Truestamp",
"JavaScript",
"TypeScript",
"JSON",
"Cryptography",
"Canonicalization",
"Canonicalize",
"Canonical",
"RFC8785",
"Signature",
"Universal",
"ES Modules",
"IIFE",
"CommonJS",
"Deno",
"Node.js",
"Browser"
],
"files": [
"README.md",
"SECURITY.md",
"CONTRIBUTING.md",
"CODE_OF_CONDUCT.md",
"LICENSE.txt",
"package.json",
"mod.ts",
"/src",
"/lib",
"/examples"
],
"source": "src/index.ts",
"types": "lib/index.d.ts",
"main": "lib/index.cjs",
"module": "lib/index.mjs",
"exports": {
"require": "./lib/index.cjs",
"import": "./lib/index.mjs",
"node": "./lib/index.cjs",
"default": "./lib/index.mjs"
},
"scripts": {
"clean": "rimraf lib",
"docs": "npx typedoc --plugin typedoc-plugin-extras --options typedoc.json src/index.ts",
"docs-preview": "npx live-server docs",
"package-check": "npx package-check",
"lint": "eslint . --ext .ts",
"lint-and-fix": "eslint . --ext .ts --fix",
"test": "jest",
"watch": "jest --watchAll",
"serve": "npx serve --cors -p 8080",
"ts-types": " tsc --emitDeclarationOnly --outDir lib",
"esbuild-iife": "node ./esbuild.iife.cjs",
"esbuild-module": "node ./esbuild.module.cjs",
"esbuild-node": "node ./esbuild.node.cjs",
"build": "npm run package-check && npm run clean && npm run esbuild-module && npm run esbuild-node && npm run esbuild-iife && npm run ts-types"
},
"devDependencies": {
"@compodoc/live-server": "^1.2.3",
"@skypack/package-check": "^0.2.2",
"@types/jest": "^27.5.1",
"@types/jsonfile": "^6.1.0",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"big.js": "^6.1.1",
"bignumber.js": "^9.0.2",
"bn.js": "^5.2.1",
"esbuild": "^0.14.40",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.2.2",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^28.1.0",
"jsonfile": "^6.1.0",
"rimraf": "^3.0.2",
"serve": "^13.0.2",
"to-hex": "^0.0.18",
"ts-jest": "^28.0.3",
"typedoc": "^0.22.15",
"typedoc-plugin-extras": "^2.2.3",
"typescript": "^4.6.4"
}
}