-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.26 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
{
"name": "input-check",
"version": "2.5.0",
"description": "input validator for nodejs",
"main": "index.js",
"scripts": {
"test": "make test",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha test --bail",
"lint": "jshint src test"
},
"author": "amanvirk & devmark",
"license": "MIT",
"devDependencies": {
"benchmark": "^2.1.4",
"chai": "^4.0.1",
"co-mocha": "^1.2.0",
"coveralls": "^2.13.1",
"istanbul": "^0.4.5",
"jshint": "^2.9.4",
"mocha": "^3.4.2",
"mocha-lcov-reporter": "^1.3.0"
},
"dependencies": {
"inflect": "^0.4.0",
"lodash": "^4.17.15",
"moment": "^2.18.1",
"pope": "^1.0.2",
"q": "^2.0.3"
},
"standard": {
"global": [
"it",
"describe",
"context",
"before",
"after",
"beforeEach",
"afterEach"
]
},
"directories": {
"doc": "docs",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devmark/input-check.git"
},
"keywords": [
"node-validator",
"validator",
"schema-validator",
"quick-validations"
],
"bugs": {
"url": "https://github.com/devmark/input-check/issues"
},
"homepage": "https://github.com/devmark/input-check#readme",
"config": {}
}