-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.8 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
56
57
58
59
60
61
62
63
64
{
"name": "@dataparty/crypto",
"private": false,
"version": "2.0.0",
"description": "dataparty crypto routines",
"main": "index.js",
"types": "index.d.ts",
"dependencies": {
"@babel/runtime": "^7.23.2",
"@deepkit/bson": "^1.0.1-alpha.143",
"@noble/ciphers": "^0.5.1",
"@noble/curves": "^1.4.0",
"@noble/post-quantum": "^0.1.0",
"@panva/hkdf": "^1.0.4",
"@stablelib/base64": "^0.7.2",
"bip39": "^3.1.0",
"buffer": "^5.7.1",
"crypto-browserify": "^3.12.0",
"debug": "^4.1.1",
"eventemitter3": "^5.0.0",
"tweetnacl": "^1.0.3"
},
"files": [
"dist",
"src",
"index.js",
"index.d.ts"
],
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.2",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-transform-runtime": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@babel/preset-typescript": "^7.23.2",
"@types/faker": "^4.1.5",
"@types/jest": "^24.0.15",
"@types/node": "^20.11.30",
"argon2": "^0.40.1",
"argon2-browser": "^1.18.0",
"events": "^3.3.0",
"faker": "^4.1.0",
"jest": "^24.8.0",
"ngzip": "^1.1.3",
"ntee": "^2.0.0",
"process": "^0.11.10",
"stream-browserify": "^3.0.0",
"ts-jest": "^24.0.2",
"typescript": "^5.4.2"
},
"scripts": {
"watch": "./node_modules/.bin/babel src --watch -d dist --extensions \".ts,.js\" --source-maps inline",
"test": "npx jest",
"build": "./node_modules/.bin/babel src -d dist --extensions \".ts,.js\" --source-maps inline",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/datapartyjs/dataparty-crypto.git"
},
"author": "Dataparty <[email protected]>",
"license": "Apache-2.0"
}