-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathpackage.json
40 lines (40 loc) · 995 Bytes
/
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
{
"name": "object-sizeof",
"version": "2.6.5",
"description": "Sizeof of a JavaScript object in Bytes",
"main": "indexv2.js",
"scripts": {
"test": "./node_modules/.bin/standard; ./node_modules/.bin/mocha",
"lint": "./node_modules/.bin/standard",
"coverage": "./node_modules/.bin/nyc npm test; ./node_modules/.bin/nyc report --reporter=text-lcov > coverage.lcov && ./node_modules/.bin/codecov --token=708ee89f-4e9c-402d-8380-1257b979596c"
},
"repository": {
"type": "git",
"url": "git://github.com/miktam/sizeof.git"
},
"keywords": [
"sizeof",
"size",
"object",
"bytes"
],
"author": "Andrei Karpushonak",
"license": "MIT",
"readmeFilename": "README.md",
"dependencies": {
"buffer": "^6.0.3"
},
"devDependencies": {
"codecov": "^3.8.3",
"mocha": "^10.6.0",
"nyc": "^17.0.0",
"should": "^13.2.3",
"standard": "^17.1.0"
},
"types": "indexv2.d.ts",
"standard": {
"env": [
"mocha"
]
}
}