-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.12 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.12 KB
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
{
"author": "Paweł Mendelski <pawel.mendelski@coditorium.com>",
"name": "fluent-validator",
"version": "1.1.0",
"description": "Fluent validation mechanism for node.js",
"main": "index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/coditorium/nodejs-fluent-validator.git"
},
"bugs": {
"url": "https://github.com/coditorium/nodejs-fluent-validator/issues"
},
"scripts": {
"test": "gulp checkstyle test",
"ci": "gulp ci",
"coveralls": "cat build/test/coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"keywords": [
"coditorium",
"validator"
],
"dependencies": {
"validator": "4.0.5"
},
"devDependencies": {
"chai": "^3.2.0",
"del": "^1.2.1",
"gulp": "~3.9.0",
"gulp-istanbul": "~0.10.0",
"gulp-jscs": "^2.0.0",
"gulp-jshint": "~1.11.2",
"gulp-mocha": "~2.1.3",
"gulp-sync": "~0.1.4",
"gulp-util": "~3.0.6",
"jshint-stylish": "~2.0.1",
"mkdirp": "~0.5.1",
"mocha": "2.2.5",
"mocha-jenkins-reporter": "~0.1.9"
},
"engines": {
"node": ">=0.10"
},
"analyze": "true"
}