forked from guillaumepotier/Parsley.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.71 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
{
"name": "parsleyjs",
"version": "2.9.1",
"homepage": "http://parsleyjs.org",
"license": "MIT",
"description": "Validate your forms, frontend, without writing a single line of javascript!",
"main": "dist/parsley.js",
"scripts": {
"test": "gulp",
"test-browser": "gulp test-browser",
"build": "gulp build",
"coverage": "gulp coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/guillaumepotier/Parsley.js.git"
},
"keywords": [
"parsley",
"form",
"validation",
"html5",
"polyfill",
"es6"
],
"author": {
"name": "Guillaume Potier",
"email": "[email protected]",
"url": "http://guillaumepotier.com/"
},
"bugs": {
"url": "https://github.com/guillaumepotier/Parsley.js/issues"
},
"dependencies": {
"jquery": ">=1.8.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-transform-object-assign": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"del": "^1.1.1",
"docco": "~0.6.3",
"expect.js": "*",
"glob": "^5.0.14",
"gulp": "~3.9.0",
"gulp-cli": "^2.0.0",
"gulp-eslint": "*",
"gulp-git": "*",
"gulp-load-plugins": "^0.10.0",
"gulp-mocha": "*",
"gulp-replace": "*",
"gulp-sourcemaps": "^1.3.0",
"gulp-uglify": "^1.2.0",
"inputevent": "*",
"jsdom": "^9.2",
"mocha": "*",
"moment": "*",
"rollup": "~0.65.2",
"rollup-plugin-babel": "*",
"rollup-plugin-replace": "*",
"rollup-plugin-uglify": "*",
"run-sequence": "^1.0.2",
"sinon": "^1.12.2"
},
"jspm": {
"main": "dist/parsley.js",
"dependencies": {
"jquery": "npm:jquery"
}
}
}