-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.47 KB
/
package.json
File metadata and controls
28 lines (28 loc) · 1.47 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
{
"name": "jquery-validation.github.io",
"version": "1.0.0",
"description": "This repository contains the documentation and content for the [jQuery Validation Plugin](https://github.com/jquery-validation/jquery-validation) website.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"copy-libs": "node -e \"const fs=require('fs');const path=require('path');const dir='lib';if(!fs.existsSync(dir))fs.mkdirSync(dir);const files=[['node_modules/jquery/dist/jquery.js','lib/jquery.js'],['node_modules/jquery-validation/dist/jquery.validate.js','lib/jquery.validate.js'],['node_modules/jquery-validation/dist/additional-methods.js','lib/additional-methods.js'],['node_modules/jquery-mockjax/dist/jquery.mockjax.js','lib/jquery.mockjax.js'],['node_modules/jquery-form/src/jquery.form.js','lib/jquery.form.js']];files.forEach(([s,d])=>fs.copyFileSync(s,d));console.log('Copied',files.length,'files to lib/');\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/jquery-validation/jquery-validation.github.io.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/jquery-validation/jquery-validation.github.io/issues"
},
"homepage": "https://github.com/jquery-validation/jquery-validation.github.io#readme",
"dependencies": {
"jquery": "^4.0.0",
"jquery-form": "^4.3.0",
"jquery-mockjax": "^3.0.1",
"jquery-validation": "^1.22.1"
}
}