-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 851 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 851 Bytes
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
{
"name": "json-with-bigint",
"version": "3.5.7",
"description": "JS library that allows you to easily serialize and deserialize data with BigInt values",
"type": "module",
"types": "./json-with-bigint.d.ts",
"exports": {
"import": "./json-with-bigint.js",
"require": "./json-with-bigint.cjs"
},
"scripts": {
"test": "npm run unit:cjs && npm run unit:esm",
"performance:cjs": "node __tests__/performance.cjs",
"unit:cjs": "node __tests__/unit.cjs",
"performance:esm": "node __tests__/performance.mjs",
"unit:esm": "node __tests__/unit.mjs"
},
"repository": {
"type": "git",
"url": "https://github.com/Ivan-Korolenko/json-with-bigint"
},
"keywords": [
"JSON",
"BigInt",
"js",
"ts",
"library"
],
"author": "Ivan Korolenko <iam@ivankorolenko.com>",
"license": "MIT"
}