-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.38 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
{
"name": "@crmackey/fernet",
"version": "0.0.15",
"type": "module",
"description": "ypeScript implementation of Fernet symmetric encryption.",
"homepage": "https://github.com/CalebM1987/fernet#readme",
"module": "./dist/esm/index.js",
"main": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/CalebM1987/fernet.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"keywords": [
"symmetric",
"encryption",
"fernet"
],
"scripts": {
"test": "jest --verbose",
"publish": "npm publish --access public",
"build": "rm -rf dist && ts-node scripts/build.ts && tsc --emitDeclarationOnly --outDir dist/types"
},
"dependencies": {
"buffer": "^6.0.3",
"crypto-js": "3.1.2-1",
"randombytes": "^2.1.0",
"urlsafe-base64": "^1.0.0"
},
"devDependencies": {
"@types/crypto-js": "^4.1.1",
"@types/jest": "^29.0.0",
"@types/node": "^18.0.0",
"@types/randombytes": "^2.0.0",
"@types/sinon": "^10.0.13",
"@types/sinonjs__fake-timers": "^8.1.2",
"cz-conventional-changelog": "^3.3.0",
"esbuild": "^0.14.44",
"jest": "^29.0.2",
"jest-environment-jsdom": "^29.0.3",
"sinon": "^14.0.0",
"ts-jest": "^28.0.8"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}