-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.36 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
{
"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.2"
},
"devDependencies": {
"@adonisjs/eslint-config": "^2.0.0",
"@adonisjs/prettier-config": "^1.4.0",
"@adonisjs/tsconfig": "^1.4.0",
"@japa/assert": "^4.0.1",
"@japa/expect-type": "^2.0.3",
"@japa/runner": "^4.2.0",
"@swc/core": "^1.10.16",
"@types/node": "^22.8.1",
"c8": "^10.1.3",
"eslint": "^9.20.1",
"prettier": "^3.5.1",
"release-it": "^18.1.2",
"ts-node-maintained": "^10.9.5",
"typescript": "^5.7.3"
},
"author": "Romain Lanz <[email protected]>",
"contributors": [
"Harminder Virk <[email protected]>"
],
"license": "MIT",
"keywords": [
"encryption",
"crypto"
],
"prettier": "@adonisjs/prettier-config",
"packageManager": "[email protected]+sha512.5383cc12567a95f1d668fbe762dfe0075c595b4bfff433be478dbbe24e05251a8e8c3eb992a986667c1d53b6c3a9c85b8398c35a960587fbd9fa3a0915406728"
}