forked from mlabieniec/complexity
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.97 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
{
"author": {
"name": "abdoul-ndiaye"
},
"description": "Helps validate the complexity of a string. It builds regular expressions based on common settings for passwords, usernames, and other user identification methods",
"scripts": {
"build": "node_modules/.bin/babel src --source-maps --out-dir dist",
"eslint": "node_modules/eslint/bin/eslint.js src",
"flow": "node_modules/.bin/flow",
"test:unit": "mocha --compilers js:babel-core/register test/*",
"test": "npm run eslint && npm run flow",
"postinstall": "npm run build"
},
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.9.1",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-class-properties": "^6.10.2",
"babel-plugin-transform-es2015-modules-commonjs": "^6.11.5",
"babel-plugin-transform-es2015-object-super": "^6.8.0",
"babel-plugin-transform-flow-strip-types": "^6.8.0",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-flow": "^1.0.0",
"chai": "^3.5.0",
"eslint": "^2.13.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-loader": "^1.3.0",
"eslint-plugin-flow-vars": "^0.4.0",
"eslint-plugin-flowtype": "^2.3.0",
"eslint-plugin-import": "^1.10.2",
"eslint-plugin-jsx-a11y": "^1.5.5",
"eslint-plugin-react": "^5.2.2",
"flow-bin": "^0.27.0",
"mocha": "^2.5.3",
"webpack": "^1.13.1"
},
"directories": {},
"keywords": [
"password",
"validate",
"regex",
"complexity",
"string"
],
"license": "BSD",
"main": "index.js",
"maintainers": [
{
"email": "michaellabieniec@gmail.com",
"name": "mlabieniec"
},
{
"email": "abdoul.nd@gmail.com",
"name": "abdoul-ndiaye"
}
],
"name": "string-complexity",
"optionalDependencies": {},
"repository": "https://github.com/AbdoulNdiaye/string-complexity",
"version": "0.1.0"
}