-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.36 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.36 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
{
"name": "@boringnode/encryption",
"description": "A framework agnostic encryption library",
"version": "0.1.0",
"engines": {
"node": ">=20.6"
},
"main": "build/index.js",
"type": "module",
"exports": {},
"scripts": {
"lint": "eslint .",
"pretest": "yarn lint",
"quick:test": "yarn node --enable-source-maps --import=ts-node-maintained/register/esm bin/test.ts",
"test": "c8 yarn quick:test",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@poppinss/utils": "^6.9.4"
},
"devDependencies": {
"@adonisjs/eslint-config": "^2.1.0",
"@adonisjs/prettier-config": "^1.4.5",
"@adonisjs/tsconfig": "^1.4.1",
"@japa/assert": "^4.0.1",
"@japa/expect-type": "^2.0.3",
"@japa/runner": "^4.2.0",
"@swc/core": "^1.11.31",
"@types/node": "^22.8.1",
"c8": "^10.1.3",
"eslint": "^9.28.0",
"prettier": "^3.5.3",
"release-it": "^18.1.2",
"ts-node-maintained": "^10.9.5",
"typescript": "^5.8.3"
},
"author": "Romain Lanz <romain.lanz@pm.me>",
"contributors": [
"Harminder Virk <virk@adonisjs.com>"
],
"license": "MIT",
"keywords": [
"encryption",
"crypto"
],
"prettier": "@adonisjs/prettier-config",
"packageManager": "yarn@4.9.2+sha512.1fc009bc09d13cfd0e19efa44cbfc2b9cf6ca61482725eb35bbc5e257e093ebf4130db6dfe15d604ff4b79efd8e1e8e99b25fa7d0a6197c9f9826358d4d65c3c"
}