forked from mikeerickson/validatorjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·78 lines (78 loc) · 2.32 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
{
"name": "validatorjs",
"description": "Validation library inspired by Laravel's Validator",
"version": "3.22.1",
"author": "David <[email protected]>",
"contributors": [
{
"name": "Mike Erickson",
"email": "[email protected]"
},
{
"name": "Gary Green",
"email": "[email protected]"
},
{
"name": "Karol Janyst",
"email": "[email protected]"
}
],
"license": "MIT",
"main": "./src/validator.js",
"repository": {
"type": "git",
"url": "https://github.com/mikeerickson/validatorjs"
},
"bugs": {
"url": "https://github.com/mikeerickson/validatorjs/issues?labels=bug&milestone=1&page=1&state=open"
},
"keywords": [
"codedungeon",
"validatorjs",
"validator.js",
"data validation",
"validator",
"validate",
"validation",
"data",
"laravel",
"laravel-validator-for-js"
],
"devDependencies": {
"browserify": "^13.0.1",
"chai": "~3.5.0",
"eslint": "5.8.0",
"grunt": "1.0.4",
"grunt-browserify": "^5.0.0",
"grunt-cli": "^1.2.0",
"grunt-contrib-concat": "~1.0.1",
"grunt-contrib-watch": "~1.0.0",
"jit-grunt": "^0.10.0",
"karma": "4.3.0",
"karma-browserify": "6.1.0",
"karma-chai": "~0.1.0",
"karma-chrome-launcher": "3.1.0",
"karma-coverage": "~1.0.0",
"karma-growl-notifications-reporter": "0.0.2",
"karma-mocha": "1.3.0",
"karma-mocha-reporter": "2.2.5",
"mocha": "~2.5.3",
"mocha-better-spec-reporter": "github:mikeerickson/mocha-better-spec-reporter",
"pump": "3.0.0",
"puppeteer": "1.19.0",
"rimraf": "3.0.0"
},
"scripts": {
"pre-commit": "npm run lint:spec && npm run lint && npm run test",
"build:all": "./scripts/build.sh",
"build": "rimraf dist && grunt dist",
"lint": "eslint \"./src/**/*.js\" --fix",
"lint:spec": "eslint \"./spec/**/*.js\" --rule 'no-redeclare: off'",
"lint:fix": "eslint \"./src/**/*.js\" --fix",
"test:node": "node node_modules/mocha/bin/mocha spec --slow 500 --reporter mocha-better-spec-reporter",
"test:watch": "node node_modules/mocha/bin/mocha --watch spec --slow 500 --reporter mocha-better-spec-reporter",
"test:browser": "npm run build:all && node node_modules/karma/bin/karma start --single-run",
"test": "npm run test:node",
"todo": "node scripts/todo.js"
}
}