forked from ericelliott/credential
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.07 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.07 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
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
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "credential",
"version": "0.2.5",
"description": "Easy password hashing and verification in Node. Protects against brute force, rainbow tables, and timing attacks.",
"main": "credential.js",
"directories": {
"test": "test"
},
"dependencies": {
"lodash": "^3.10.0"
},
"devDependencies": {
"babel": "^5.6.14",
"babel-eslint": "^3.1.20",
"babel-loader": "^5.3.1",
"babel-plugin-object-assign": "^1.2.0",
"blue-tape": "^0.1.9",
"dependency-check": "^2.5.0",
"eslint": "^0.24.0",
"eslint-loader": "^0.14.0",
"faucet": "0.0.1",
"isparta": "^3.0.3",
"node-libs-browser": "^0.5.2",
"nsp": "^1.0.1",
"precommit-hook": "^3.0.0",
"rimraf": "^2.4.0",
"tape": "~4.0.0",
"ttest": "^0.3.0",
"webpack": "^1.9.11"
},
"scripts": {
"test": "node test/credential-test.js",
"lint": "eslint credential.js test",
"init": "rimraf .validate.json && rimraf .jshintrc",
"clean": "rimraf build",
"prebuild": "npm run clean",
"build": "NODE_ENV=production webpack && npm run build:min",
"build:min": "NODE_ENV=production MINIFY=1 webpack",
"start": "webpack --watch",
"cov": "npm run cov:clean",
"cov:clean": "rimraf coverage",
"prepublish": "npm run build",
"validate": "npm run lint && npm run build && npm test",
"validate-dev": "npm run lint && npm test | faucet",
"audit": "nsp package",
"precheck": "npm run validate",
"check": "npm run audit && npm outdated --depth 0"
},
"repository": {
"type": "git",
"url": "git@github.com:dilvie/credential.git"
},
"keywords": [
"password",
"passwords",
"salt",
"rainbow",
"table",
"brute",
"force",
"security",
"login",
"auth",
"authorization",
"sign",
"in",
"log",
"in",
"key",
"stretching",
"PBKDF2",
"hash",
"password",
"hash"
],
"author": "Eric Elliott",
"license": "MIT",
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/dilvie/credential/issues"
},
"pre-commit": [
"validate"
]
}