-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.84 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.84 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
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
{
"name": "@ltvco/form-validation",
"version": "1.0.3",
"description": "Library to handle form validation, similar to jQuery Validation, but without any dependencies.",
"types": "./dist/types/index.d.ts",
"main": "./dist/index.js",
"files": [
"dist"
],
"scripts": {
"clean": "del-cli ./dist",
"build": "npm run clean && webpack --config ./webpack.prod.js",
"build:dev": "npm run clean && webpack --config ./webpack.dev.js",
"build:test": "npm run clean && cross-env NODE_ENV=test webpack --config ./webpack.dev.js",
"start": "webpack serve --config ./webpack.dev.js",
"test:serve": "http-server . -p 3001",
"test": "npm run build:test && playwright test",
"prepack": "npm run build",
"lint": "eslint .",
"format": "prettier --write .",
"setup": "find dev/ -type f -exec git update-index --skip-worktree {} \\; && echo 'Dev environment configured: changes to dev/ files will be ignored by Git'"
},
"repository": {
"type": "git",
"url": "https://github.com/ltvco/form-validation"
},
"keywords": [
"form",
"validation",
"No dependencies",
"No Jquery"
],
"author": "LTV",
"license": "MIT",
"devDependencies": {
"@playwright/test": "^1.45.2",
"@types/node": "^20.14.11",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"del-cli": "^5.1.0",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"html-webpack-plugin": "^5.6.3",
"http-server": "^14.1.1",
"postcss-loader": "^8.1.1",
"prettier": "^3.3.3",
"sass": "^1.83.4",
"sass-loader": "^16.0.4",
"style-loader": "^4.0.0",
"terser-webpack-plugin": "^5.3.9",
"ts-loader": "^9.4.4",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.2.0"
}
}