-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.03 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
{
"name": "level-transcoder",
"version": "1.0.1",
"description": "Encode data with built-in or custom encodings",
"license": "MIT",
"main": "index.js",
"types": "./index.d.ts",
"scripts": {
"test": "tsc && standard && hallmark && nyc tape test/*.js",
"test-browsers-local": "airtap --coverage --verbose test/*.js",
"coverage": "nyc report -r lcovonly",
"hallmark": "hallmark --fix"
},
"files": [
"lib",
"index.js",
"index.d.ts",
"CHANGELOG.md",
"LICENSE",
"UPGRADING.md"
],
"dependencies": {
"buffer": "^6.0.3",
"module-error": "^1.0.1"
},
"devDependencies": {
"@types/node": "^20.4.5",
"@voxpelli/tsconfig": "^4.0.0",
"airtap": "^4.0.3",
"airtap-playwright": "^1.0.1",
"hallmark": "^4.0.0",
"nyc": "^15.1.0",
"standard": "^17.0.0",
"tape": "^5.3.2",
"typescript": "^4.5.2"
},
"repository": "Level/transcoder",
"homepage": "https://github.com/Level/transcoder",
"keywords": [
"level"
],
"engines": {
"node": ">=12"
}
}