-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.83 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
{
"name": "simpower-validation",
"version": "1.0.11",
"description": "Modern, simple but powerful form validation library written in pure JavaScript, with no dependencies.",
"main": "./simpower-validation.esm.js",
"module": "./simpower-validation.esm.js",
"browserslist": {
"development": [
"last 2 versions"
],
"production": [
"defaults",
"not dead and supports es6-module"
]
},
"scripts": {
"lint": "eslint ./",
"lint:fix": "eslint ./ --fix",
"prettier": "prettier --check --config ./.prettierrc.js ./**/*.js",
"prettier:fix": "prettier --write --config ./.prettierrc.js ./**/*.js",
"build:dev": "set BROWSERSLIST_ENV=development&&set NODE_ENV=development&&webpack --config ./webpack.dev.js --mode development",
"build:prod": "set BROWSERSLIST_ENV=production&&set NODE_ENV=production&&webpack --config ./webpack.prod.js --mode production"
},
"repository": {
"type": "git",
"url": "https://github.com/Kallenju/simpower-validation.git"
},
"keywords": [
"form",
"validation",
"form validation",
"simpower-validation"
],
"author": "Konstantin Solovev [email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/Kallenju/simpower-validation/issues"
},
"homepage": "https://github.com/Kallenju/simpower-validation#readme",
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/eslint-parser": "^7.19.1",
"@babel/preset-env": "^7.20.2",
"babel-loader": "^9.1.0",
"browserslist": "^4.22.1",
"copy-webpack-plugin": "^11.0.0",
"core-js": "^3.26.1",
"eslint": "8.26.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"npm-run-all": "^4.1.5",
"prettier": "2.7.1",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.0"
}
}