-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.24 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
{
"name": "@samuelthomas2774/saltpack",
"version": "0.4.0",
"description": "Node.js implementation of Saltpack.",
"keywords": [
"saltpack",
"keybase"
],
"license": "MIT",
"author": {
"name": "Samuel Elliott",
"url": "https://samuelthomas2774.github.io"
},
"main": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://gitlab.fancy.org.uk/samuel/node-saltpack.git"
},
"files": [
"dist",
"!dist/**/*.map",
"!dist/__tests__"
],
"engines": {
"node": "^12.0.0 || >=14.0.0"
},
"dependencies": {
"@msgpack/msgpack": "^1.12.2",
"lodash.chunk": "^4.2.0",
"pumpify": "^2.0.1",
"tweetnacl": "^1.0.3"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/lodash.chunk": "^4.2.7",
"@types/node": "^16.11.36",
"@types/pumpify": "^1.4.1",
"jest": "^29.4.2",
"typescript": "^4.9.5"
},
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js dist/__tests__/**.js --color --verbose"
},
"publishConfig": {
"access": "public"
}
}