json-bigint-extend 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,51 @@
1
+ {
2
+ "name": "json-bigint-extend",
3
+ "version": "1.0.2",
4
+ "description": "JSON.parse with bigints support",
5
+ "main": "dist/index.js",
6
+ "files": [
7
+ "dist/"
8
+ ],
9
+ "scripts": {
10
+ "test": "./node_modules/mocha/bin/mocha -R spec --check-leaks test/*-test.js",
11
+ "build": "rollup -c && node obfuscate.js",
12
+ "prepublishOnly": "npm run build",
13
+ "publish:local": "yalc publish",
14
+ "publish:npm": "npm publish",
15
+ "publish:npm:beta": "npm publish --tag beta"
16
+ },
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "git+https@github.com/sidorares/json-bigint.git"
20
+ },
21
+ "keywords": [
22
+ "JSON",
23
+ "bigint",
24
+ "bignumber",
25
+ "parse",
26
+ "json"
27
+ ],
28
+ "author": "Andrey Sidorov <andrey.sidorov@gmail.com>",
29
+ "license": "MIT",
30
+ "dependencies": {
31
+ "async_hooks": "^1.0.0",
32
+ "bignumber.js": "^9.0.0",
33
+ "vm": "^0.1.0"
34
+ },
35
+ "peerDependencies": {
36
+ "axios": ">= 1.x",
37
+ "express": ">= 4.x",
38
+ "methods": ">= 1.x"
39
+ },
40
+ "devDependencies": {
41
+ "@babel/core": "^7.28.6",
42
+ "@babel/preset-env": "^7.28.6",
43
+ "@rollup/plugin-babel": "^6.1.0",
44
+ "@rollup/plugin-commonjs": "^29.0.0",
45
+ "@rollup/plugin-node-resolve": "^16.0.3",
46
+ "chai": "4.2.0",
47
+ "mocha": "8.0.1",
48
+ "rollup": "^4.57.0",
49
+ "rollup-plugin-javascript-obfuscator": "^1.0.4"
50
+ }
51
+ }