-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 835 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 835 Bytes
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
{
"name": "@cheatcodetuts/form-validator",
"version": "0.0.0",
"description": "JavaScript form validation library.",
"main": "dist/index.min.js",
"scripts": {
"release": "node ./release.js",
"build": "rollup --c && node ./swapProductionUrls",
"dev": "rollup -c -w",
"test": "jest",
"test-watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cheatcode/form-validator"
},
"keywords": [
"npm",
"package",
"template"
],
"author": "cheatcode",
"license": "MIT",
"dependencies": {
"validator": "^13.6.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"inquirer": "^7.3.3",
"jest": "^25.5.4",
"rollup": "^1.32.0",
"rollup-plugin-terser": "^7.0.2"
}
}