-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.35 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
{
"name": "@dwtechs/passken-express",
"version": "0.1.0",
"description": "Open source password management library for Express.js to create, encrypt and compare passwords safely.",
"keywords": [
"passwords",
"Express"
],
"homepage": "https://github.com/DWTechs/passken-express.js",
"main": "dist/passken-express",
"types": "dist/passken-express",
"repository": {
"type": "git",
"url": "https://github.com/DWTechs/Passken-express.js"
},
"bugs": {
"url": "https://github.com/DWTechs/Passken-express.js/issues",
"email": ""
},
"license": "MIT",
"author": {
"name": "Ludovic Cluber",
"email": "http://www.lcluber.com/contact",
"url": "http://www.lcluber.com"
},
"contributors": [],
"scripts": {
"start": "",
"build": "node ./scripts/clear && tsc && npm run rollup && node ./scripts/copy && npm run test",
"rollup:mjs": "rollup --config rollup.config.mjs",
"rollup:cjs": "rollup --config rollup.config.cjs.mjs",
"rollup": "npm run rollup:mjs",
"test": ""
},
"files": [
"dist/"
],
"dependencies": {
"@dwtechs/checkard": "2.29.2",
"@dwtechs/passken": "0.2.0",
"@dwtechs/winstan": "0.3.0"
},
"devDependencies": {
"@types/express": "5.0.0",
"@rollup/plugin-node-resolve": "15.3.0",
"core-js": "3.38.1",
"rollup": "4.24.0",
"typescript": "5.6.3"
}
}