forked from uphold/validator.js-asserts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.75 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
91
92
93
94
{
"name": "validator.js-asserts",
"version": "3.0.1",
"description": "A set of extra asserts for validator.js.",
"license": "MIT",
"contributors": [
{
"name": "Nuno Sousa",
"email": "[email protected]"
},
{
"name": "Rui Marinho",
"email": "[email protected]"
},
{
"name": "Tiago Ribeiro",
"email": "[email protected]"
}
],
"homepage": "http://seegno.github.io/validator.js-asserts/",
"bugs": "https://github.com/seegno/validator.js-asserts/issues",
"repository": {
"type": "git",
"url": "https://github.com/seegno/validator.js-asserts"
},
"main": "./dist/index.js",
"keywords": [
"validator.js",
"asserts",
"extra",
"extras",
"set"
],
"options": {
"mocha": "--compilers js:babel-register --recursive test"
},
"scripts": {
"changelog": "github_changelog_generator --header-label='# Changelog' --future-release=v$npm_config_future_release && sed -i '' -e :a -e '$d;N;2,4ba' -e 'P;D' CHANGELOG.md",
"cover": "babel-node node_modules/.bin/isparta cover --report html _mocha -- $npm_package_options_mocha",
"lint": "eslint src test && jscs src test",
"prepublish": "npm run transpile",
"test": "NODE_ENV=test mocha $npm_package_options_mocha",
"transpile": "rm -rf dist/* && babel src --out-dir dist",
"version": "npm run changelog --future-release=$npm_package_version && npm run transpile && git add -A CHANGELOG.md dist"
},
"dependencies": {
"lodash": "^4.8.2",
"validator.js": "^2.0.0"
},
"devDependencies": {
"abavalidator": "^2.0.1",
"babel-cli": "^6.7.7",
"babel-eslint": "^6.0.3",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-preset-es2015-node4": "^2.1.0",
"babel-register": "^6.7.2",
"bignumber.js": "^2.3.0",
"creditcard": "^0.1.2",
"eslint": "^2.8.0",
"eslint-config-seegno": "^4.0.0",
"eslint-plugin-babel": "^3.0.0",
"eslint-plugin-sort-class-members": "^1.0.1",
"google-libphonenumber": "^1.0.18",
"iban": "0.0.6",
"isoc": "0.0.1",
"isparta": "^4.0.0",
"jscs": "^3.0.3",
"jscs-config-seegno": "^2.0.0",
"mocha": "^2.3.4",
"moment": "^2.13.0",
"should": "^8.3.1",
"sinon": "^1.15.4",
"tin-validator": "^1.0.0",
"uk-modulus-checking": "0.0.3",
"urijs": "^1.17.1",
"validator": "^5.2.0"
},
"optionalPeerDependencies": {
"abavalidator": ">=2 <3",
"bignumber.js": ">=2 <3",
"creditcard": ">=0.0.1 <1.0.0",
"google-libphonenumber": ">=1 <2",
"iban": ">=0.0.6 <1.0.0",
"isoc": ">=0.0.1 <1.0.0",
"moment": ">=2 <3",
"tin-validator": ">=1.0.0 <2.0.0",
"uk-modulus-checking": "0.0.2",
"urijs": ">=1 <2",
"validator": ">=3 <6"
},
"engines": {
"node": ">=4"
}
}