forked from feross/buffer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1 KB
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
{
"name": "@web3pack/buffer",
"version": "7.0.0",
"description": "Node.js Buffer API, for the browser",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"keywords": [
"arraybuffer",
"browser",
"browserify",
"buffer",
"compatible",
"dataview",
"uint8array"
],
"author": "Evren Ceyhan",
"license": "MIT",
"homepage": "https://github.com/Web3Pack/buffer",
"repository": {
"type": "git",
"url": "git://github.com/Web3Pack/buffer.git"
},
"bugs": {
"url": "https://github.com/Web3Pack/buffer/issues"
},
"scripts": {
"build": "npm run clean & tsc",
"clean": "rm -rf ./dist",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"base64-js": "^1.5.1",
"ieee754": "^1.2.1"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^17.0.25",
"jest": "^27.5.1",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
}
}