-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.78 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
67
68
69
70
71
72
73
{
"name": "adonis5-pbkdf2",
"version": "1.1.1",
"types": "build/adonis-typings/index.d.ts",
"main": "build/providers/Pbkdf2Provider.js",
"scripts": {
"pretest": "npm run lint",
"test": "node japaFile.js",
"mrm": "mrm --preset=@adonisjs/mrm-preset",
"lint": "eslint . --ext=.ts",
"release": "np",
"version": "npm run build",
"clean": "del build",
"compile": "npm run lint && npm run clean && tsc",
"build": "npm run compile",
"prepublishOnly": "npm run build",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/maxgalbu/adonis5-pbkdf2.git"
},
"keywords": [
"adonis",
"hash",
"pbkdf2"
],
"author": "Massimo Galbusera",
"license": "MIT",
"bugs": {
"url": "https://github.com/maxgalbu/adonis5-pbkdf2/issues"
},
"homepage": "https://github.com/maxgalbu/adonis5-pbkdf2#readme",
"description": "",
"devDependencies": {
"@adonisjs/core": "^5.4.0",
"@adonisjs/mrm-preset": "^4.1.2",
"@adonisjs/require-ts": "^2.0.8",
"@adonisjs/sink": "^5.1.6",
"@types/node": "^16.11.7",
"del-cli": "^4.0.1",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-adonis": "^2.0.0",
"eslint-plugin-prettier": "^4.0.0",
"japa": "^4.0.0",
"mrm": "^3.0.10",
"np": "^7.5.0",
"prettier": "^2.4.1",
"ts-morph": "^12.2.0",
"typescript": "^4.4.4"
},
"np": {
"contents": ".",
"anyBranch": false
},
"files": [
"build/adonis-typings",
"build/lib",
"build/providers",
"build/instructions.js"
],
"adonisjs": {
"instructions": "./build/instructions.js",
"types": "adonis5-pbkdf2",
"providers": [
"adonis5-pbkdf2"
]
},
"dependencies": {
"@phc/pbkdf2": "^1.1.14"
}
}