-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
85 lines (85 loc) · 2.56 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
79
80
81
82
83
84
85
{
"name": "vulcanval",
"version": "3.4.0",
"description": "Validate HTML form data universally seamlessly",
"keywords": [
"validation",
"form",
"forms",
"jquery",
"plugin"
],
"private": false,
"author": "Romel Pérez (romelperez.com)",
"license": "MIT",
"homepage": "https://github.com/vulcan-estudios/vulcanval",
"repository": {
"type": "git",
"url": "https://github.com/vulcan-estudios/vulcanval.git"
},
"bugs": {
"url": "https://github.com/vulcan-estudios/vulcanval/issues"
},
"main": "bundle/js/vulcanval.js",
"scripts": {
"build": "gulp build",
"bundle": "babel src --out-dir bundle",
"test": "npm run test-global && npm run test-jquery",
"test-global": "npm run test-global-node && npm run test-global-browser",
"test-global-node": "NODE_ENV=test mocha test/global",
"test-global-browser": "NODE_ENV=test karma start karma-global.conf.js",
"test-jquery": "npm run test-jquery-v1 && npm run test-jquery-v2 && npm run test-jquery-v3",
"test-jquery-v1": "NODE_ENV=test karma start karma-jquery-v1.conf.js",
"test-jquery-v2": "NODE_ENV=test karma start karma-jquery-v2.conf.js",
"test-jquery-v3": "NODE_ENV=test karma start karma-jquery-v3.conf.js",
"docs": "gulp docs"
},
"peerDependencies": {
"validator": "*"
},
"dependencies": {
"extend": "^3.0.0",
"prhone-log": "^2.2.3"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.18.0",
"babel-preset-es2015": "^6.5.0",
"babel-register": "^6.18.0",
"babelify": "^7.2.0",
"body-parser": "^1.15.2",
"browserify": "^13.0.0",
"chai": "^3.5.0",
"del": "^2.2.1",
"express": "^4.14.0",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^3.1.0",
"gulp-babel": "^6.1.2",
"gulp-clean-css": "^2.0.7",
"gulp-jsdoc3": "^0.3.0",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^1.5.3",
"gulp-util": "^3.0.7",
"ink-docstrap": "^1.2.1",
"jquery": "^3.1.1",
"karma": "^1.1.0",
"karma-browserify": "^5.0.5",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^1.0.1",
"karma-firefox-launcher": "^1.0.0",
"karma-fixture": "^0.2.6",
"karma-html2js-preprocessor": "^1.0.0",
"karma-json-fixtures-preprocessor": "0.0.6",
"karma-mocha": "^1.1.1",
"karma-mocha-reporter": "^2.0.4",
"karma-phantomjs-launcher": "^1.0.1",
"lodash": "^4.16.1",
"mocha": "^2.5.3",
"node-sass": "^3.8.0",
"require-dir": "^0.3.0",
"sassdoc": "^2.1.20",
"validator": "^6.1.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.7.0"
}
}