-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.24 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
{
"name": "json-sizeof",
"version": "1.5.0",
"description": "Get the byte size of an object after JSON.stringify",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"dev": "nodemon src/index.ts",
"test": "mocha --timeout 60000 -b -r ts-node/register ./src/test/index.test.ts"
},
"files": [
"dist/index.d.ts",
"dist/index.js",
"dist/index.js.map",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/a179346/json-sizeof.git"
},
"keywords": [
"size",
"byte",
"bytes",
"sizeof",
"json",
"object",
"node",
"json-size",
"json-sizeof",
"object-size",
"json-byte",
"object-byte"
],
"author": "a179346",
"license": "ISC",
"bugs": {
"url": "https://github.com/a179346/json-sizeof/issues"
},
"homepage": "https://github.com/a179346/json-sizeof#readme",
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/mocha": "^9.0.0",
"@types/node": "^16.4.3",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"chai": "^4.3.4",
"eslint": "^7.31.0",
"mocha": "^9.0.3",
"nodemon": "^2.0.12",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
}
}