-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.44 KB
/
package.json
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
{
"name": "json-bint",
"version": "0.0.8",
"private": false,
"description": "json with bigint supports.",
"keywords": [
"json",
"bigint",
"bignumber"
],
"repository": {
"type": "git",
"url": "https://github.com/weiran-zsd/json-bint"
},
"license": "MIT",
"author": "唯然<[email protected]",
"type": "commonjs",
"exports": {
".": {
"require": "./lib/jsonb.cjs",
"types": "./lib/jsonb.d.ts"
},
"./axios": {
"require": "./lib/axios.cjs",
"types": "./lib/axios.d.ts"
}
},
"files": [
"LICENSE",
"README.md",
"lib",
"!**/*.test.{mjs,js,ts}"
],
"scripts": {
"lint": "eslint lib",
"prepare": "husky install",
"prettier": "prettier -w lib",
"release": "npm test && standard-version",
"test": "node --test",
"test:cov": "node --test --experimental-test-coverage",
"test:watch": "node --test --watch ./**/*.test.js"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
},
"dependencies": {
"@ton.js/json-parser": "0.0.0-beta.0"
},
"devDependencies": {
"@eslint/js": "^8.48.0",
"@tsconfig/esm": "^1.0.4",
"@types/node": "^20.5.7",
"eslint": "^8.48.0",
"eslint-plugin-n": "^16.0.2",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^3.0.2",
"standard-version": "^9.3.0",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=16"
}
}