-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.71 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
65
66
{
"name": "@nthparty/bcl",
"version": "0.2.0",
"description": "TypeScript library that provides a simple interface for symmetric (i.e., symmetric-key) and asymmetric (i.e., asymmetric-key) encryption/decryption primitives.",
"main": "build/bcl.js",
"types": "build/bcl.d.ts",
"directories": {
"test": "test"
},
"files": [
"build/**",
"package.json",
"README.md",
"dist/**"
],
"scripts": {
"build": "tsc",
"dist": "webpack --mode=production",
"test": "jest --coverage",
"lint": "eslint src test/bcl.test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nthparty/bcl-js.git"
},
"author": "Nth Party, Ltd.",
"contributors": [
{
"name": "Wyatt Howe",
"email": "[email protected]",
"url": "nthparty.com"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/nthparty/bcl-js/issues"
},
"homepage": "https://github.com/nthparty/bcl-js#readme",
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "16.0.0",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"@webpack-cli/generators": "^2.2.0",
"coveralls": "^3.1.0",
"eslint": "^7.30.0",
"jest": "^27.0.6",
"nyc": "^15.1.0",
"source-map-support": "^0.5.6",
"ts-jest": "^27.0.3",
"ts-loader": "^6.2.2",
"ts-node": "^10.0.0",
"tslint": "^6.1.3",
"typedoc": "^0.18.0",
"typescript": "^4.1.3",
"webpack": "^5.42.1"
},
"dependencies": {
"@types/libsodium-wrappers": "^0.7.9",
"@types/libsodium-wrappers-sumo": "^0.7.5",
"@types/node": "^16.0.0",
"buffer": "^6.0.3",
"jsdoc": "^3.6.7",
"libsodium-wrappers-sumo": "^0.7.9"
}
}