-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.92 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
{
"name": "pwhaas",
"version": "1.0.1",
"description": "Password Hash As A Service",
"main": "dist/bin/www",
"repository": {
"type": "git",
"url": "git+https://github.com/jdconley/pwhaas.git"
},
"private": true,
"scripts": {
"start": "npm run build && node dist/bin/www",
"clean": "rm -rf dist",
"build": "tsc -p . && cp -r bin views config public dist",
"lint": "tslint --project tslint.json",
"prep": "npm run clean && npm run lint && npm run build",
"pretest": "npm run lint && npm run build",
"test": "mocha dist/test/*.js"
},
"keywords": [
"password",
"hash",
"argon2",
"security",
"microservice"
],
"author": {
"name": "JD Conley",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/jdconley/pwhaas/issues"
},
"engines": {
"node": "^6.0.0"
},
"files": [
"dist"
],
"license": "MIT",
"dependencies": {
"argon2themax": "^1.3.0",
"body-parser": "^1.15.2",
"config": "^1.21.0",
"express": "^4.14.0",
"express-winston": "^2.0.0",
"fs-promise": "^0.5.0",
"lodash": "^4.16.4",
"pug": "^2.0.0-beta3",
"serve-favicon": "^2.3.0",
"toobusy-js": "^0.5.1",
"winston": "^2.2.0",
"winston-config": "^0.5.0"
},
"devDependencies": {
"typescript": "^2.0.3",
"@types/body-parser": "0.0.33",
"@types/chai": "^3.4.34",
"@types/config": "0.0.30",
"@types/debug": "0.0.29",
"@types/express": "^4.0.33",
"@types/lodash": "^4.14.37",
"@types/mocha": "^2.2.32",
"@types/node": "^6.0.45",
"@types/serve-favicon": "^2.2.28",
"@types/winston": "0.0.28",
"tslint": "^3.15.1",
"chai": "^3.5.0",
"mocha": "^3.0.2"
}
}