-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
56 lines (56 loc) · 1.68 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
{
"name": "form-validation.js",
"version": "1.0.0",
"description": "The most customizable validation framework for JavaScript.",
"main": "dist/form-validation.cjs.prod.js",
"umd:main": "dist/form-validation.umd.prod.js",
"unpkg": "dist/form-validation.umd.prod.js",
"module": "dist/form-validation.es.prod.js",
"source": "src/index.ts",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/iendeavor/form-validation.js.git"
},
"bugs": {
"url": "https://github.com/iendeavor/form-validation.js/issues"
},
"homepage": "https://github.com/iendeavor/form-validation.js#readme",
"author": "Ernest <[email protected]>",
"license": "MIT",
"keywords": [
"form",
"validation",
"verification",
"easy-to-use",
"framework-independent",
"proxy"
],
"scripts": {
"build": "rollup --config",
"dev": "rollup --config --watch",
"test": "jest --clearCache && jest --testTimeout 30 --all",
"lint": "prettier --check *.md *.js *.json **/*.js **/*.ts **/*.spec.ts **/*.json **/*.md",
"lint:fix": "yarn lint --write"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^8.0.1",
"@rollup/plugin-replace": "^2.3.2",
"@types/jest": "^25.2.1",
"husky": "^4.2.5",
"jest": "^25.5.4",
"prettier": "2.0.5",
"rimraf": "^3.0.2",
"rollup": "^2.7.6",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-typescript2": "^0.27.0",
"ts-jest": "^25.4.0",
"typescript": "^3.8.3"
},
"husky": {
"hooks": {
"pre-push": "git diff --exit-code && git diff --staged --exit-code && yarn lint && yarn test"
}
}
}