-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.88 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.88 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "oslllo-validator",
"version": "4.0.0",
"description": "All in one Javascript validator",
"main": "src/index.js",
"scripts": {
"eslint": "npx eslint",
"lint": "npm run eslint -- src test",
"lint:fix": "npm run eslint -- --fix src test",
"test": "npm run test:code && npm run lint",
"test:code": "npm run build && npm run test:only",
"test:only": "nyc npx mocha",
"build": "npm run browser:build",
"browser:build": "npm run webpack -- --config webpack.dev.js",
"webpack": "npx webpack",
"coverage": "npx nyc report --reporter=lcovonly"
},
"files": [
"src",
"LICENCE",
"README.md"
],
"sideEffects": false,
"author": "Ghustavh Ehm <https://github.com/Ghustavh97>",
"contributors": [
{
"name": "Ghustavh Ehm",
"email": "Ghustavh97@gmail.com",
"url": "https://github.com/Ghustavh97"
},
{
"name": "oslllo",
"email": "oslllo.com@gmail.com",
"url": "https://github.com/oslllo"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/oslllo/validator.git"
},
"keywords": [
"oslllo",
"validator",
"javascript",
"all-in-one-validator",
"all-in-one"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/oslllo/validator/issues"
},
"homepage": "https://docs.oslllo.com/validator/master",
"dependencies": {
"validator": "^13.15.26"
},
"devDependencies": {
"@babel/cli": "^7.28.3",
"@babel/core": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"chai": "^4.5.0",
"clean-webpack-plugin": "^3.0.0",
"coveralls": "^3.1.1",
"domino": "^2.1.6",
"eslint": "^7.32.0",
"jsdom": "^19.0.0",
"mocha": "^11.7.5",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.1.0",
"webpack": "^5.104.1",
"webpack-cli": "^4.10.0",
"webpack-merge": "^5.10.0"
},
"engines": {
"node": ">= 10.0"
}
}