forked from mikeerickson/validatorjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.73 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
{
"name": "validatorjs",
"description": "Validation library inspired by Laravel's Validator",
"version": "3.11.0",
"author": "David <[email protected]>",
"contributors": [
{
"name": "Gary Green",
"email": "[email protected]"
},
{
"name": "Karol Janyst",
"email": "[email protected]"
},
{
"name": "Mike Erickson",
"email": "[email protected]"
}
],
"license": "MIT",
"main": "./src/validator.js",
"repository": {
"type": "git",
"url": "https://github.com/skaterdav85/validatorjs"
},
"bugs": {
"url": "https://github.com/skaterdav85/validatorjs/issues?labels=bug&milestone=1&page=1&state=open"
},
"keywords": [
"validatorjs",
"validator.js",
"data validation",
"validator",
"validate",
"validation",
"data",
"laravel",
"laravel-validator-for-js"
],
"devDependencies": {
"browserify": "^13.0.1",
"chai": "~3.5.0",
"grunt": "1.0.1",
"grunt-browserify": "^5.0.0",
"grunt-cli": "^1.2.0",
"grunt-contrib-concat": "~1.0.1",
"grunt-contrib-jshint": "1.0.0",
"grunt-contrib-uglify": "1.0.1",
"grunt-contrib-watch": "~1.0.0",
"jit-grunt": "^0.10.0",
"karma": "~1.1.0",
"karma-browserify": "^5.0.5",
"karma-chai": "~0.1.0",
"karma-chrome-launcher": "~1.0.1",
"karma-coverage": "~1.0.0",
"karma-growl-notifications-reporter": "0.0.2",
"karma-mocha": "~1.1.1",
"karma-phantomjs-launcher": "~1.0.1",
"mocha": "~2.5.3"
},
"scripts": {
"test-node": "node node_modules/mocha/bin/mocha spec",
"test-browser": "grunt dist && node node_modules/karma/bin/karma start --single-run --browsers PhantomJS",
"test": "npm run test-node && npm run test-browser"
}
}