-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 946 Bytes
/
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
{
"name": "validator-as-promised",
"version": "1.0.2",
"description": "String validation and sanitization (validator.js) using promises",
"main": "index.js",
"scripts": {
"test": "_mocha -R spec tests.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NGPixel/validator-as-promised.git"
},
"keywords": [
"validator",
"validation",
"validate",
"promise",
"promised",
"asynchronous",
"async",
"assert"
],
"author": "Nicolas Giard",
"license": "MIT",
"bugs": {
"url": "https://github.com/NGPixel/validator-as-promised/issues"
},
"homepage": "https://github.com/NGPixel/validator-as-promised#readme",
"dependencies": {
"bluebird": "^3.4.1",
"lodash": "^4.14.0",
"validator": "^5.5.0"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"mocha": "^2.5.3"
},
"engines" : {
"node" : ">=4.0.0"
}
}