-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
90 lines (90 loc) · 2.33 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "credential",
"version": "2.0.0",
"description": "Easy password hashing and verification in Node. Protects against brute force, rainbow tables, and timing attacks.",
"main": "credential.js",
"directories": {
"test": "test",
"bin": "bin"
},
"bin": {
"credential": "bin/cmd.js"
},
"dependencies": {
"commander": "^2.8.1",
"mout": "^0.11.1",
"pify": "^2.3.0",
"pinkie-promise": "^2.0.0",
"pluck-keys": "^0.0.4"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.5.2",
"babel-eslint": "^5.0.0",
"babel-loader": "^6.2.2",
"babel-plugin-object-assign": "^1.2.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-stage-3": "^6.5.0",
"blue-tape": "^0.2.0",
"cross-env": "^1.0.5",
"dependency-check": "^2.5.0",
"eslint": "^2.1.0",
"eslint-config-xo-space": "^0.11.0",
"eslint-loader": "^1.2.1",
"faucet": "0.0.1",
"isparta": "^4.0.0",
"node-libs-browser": "^1.0.0",
"nsp": "^2.0.1",
"precommit-hook": "^3.0.0",
"rimraf": "^2.5.2",
"tape": "^4.2.2",
"ttest": "^0.3.0",
"webpack": "^1.12.13"
},
"scripts": {
"test": "tape test/*-test.js",
"lint": "eslint credential.js test bin/cmd.js",
"init": "rimraf .validate.json && rimraf .jshintrc",
"clean": "rimraf build",
"prebuild": "npm run clean",
"build": "cross-env NODE_ENV=production webpack && npm run build:min",
"build:min": "cross-env 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 check",
"precheck": "npm run validate",
"check": "npm run audit && npm outdated --depth 0"
},
"repository": {
"type": "git",
"url": "[email protected]:ericelliott/credential.git"
},
"keywords": [
"password",
"passwords",
"hash",
"auth",
"authorization",
"authentication",
"security",
"login",
"sign in",
"salt",
"rainbow",
"brute",
"stretching",
"PBKDF2"
],
"author": "Eric Elliott",
"license": "MIT",
"bugs": {
"url": "https://github.com/ericelliott/credential/issues"
},
"pre-commit": [
"validate"
]
}