-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 982 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 982 Bytes
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
{
"name": "ndn-binary",
"version": "0.0.3",
"description": "Encode and decode, and hold as binary your data",
"keywords": [
"ndn",
"encode",
"decode",
"binary"
],
"homepage": "https://github.com/alksily/ndn",
"author": "Aleksey Ilyin <alksily@outlook.com (https://github.com/alksily)",
"contributors": [],
"repository": {
"type": "git",
"url": "https://github.com/alksily/ndn.git"
},
"bugs": {
"url": "https://github.com/alksily/ndn/issues"
},
"license": "MIT",
"files": [
"dist/",
"src/",
"LICENSE.md",
"README.md"
],
"main": "dist/index.cjs",
"module": "src/index.js",
"type": "module",
"babel": {
"presets": [
"@babel/preset-env"
]
},
"scripts": {
"build": "babel src -d dist",
"test": "mocha"
},
"devDependencies": {
"@babel/cli": "^7.22.15",
"@babel/core": "^7.22.15",
"@babel/preset-env": "^7.22.15",
"chai": "^5.0.0",
"mocha": "^10.0.0"
}
}