-
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) · 2.07 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.07 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": "valcheck",
"description": "A JavaScript value checker for NodeJS",
"repository": {
"type": "git",
"url": "git+https://github.com/Linkurious/valcheck.git"
},
"author": {
"name": "David Rapin",
"url": "https://github.com/davidrapin"
},
"contributors": [
{
"name": "Francesco Infante",
"url": "https://github.com/francescoinfante"
}
],
"bugs": {
"url": "https://github.com/Linkurious/valcheck/issues"
},
"license": "MIT",
"version": "1.2.7",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/*",
"jsdoc/*"
],
"logo": "https://upload.wikimedia.org/wikipedia/en/a/a8/The_Wire_Valcheck.jpg",
"keywords": [
"validator",
"check",
"checker",
"value",
"validation"
],
"private": false,
"engines": {
"node": ">=16.18"
},
"scripts": {
"make": "npm run lint && npm run build && npm run test",
"clean": "rm -rf ./lib ./node_modules ./coverage ./.nyc_output",
"lint": "tslint --fix --config tslint.json 'src/**/*'",
"lint:ci": "tslint -t checkstyle -o reports/checkstyle.xml --config tslint.json 'src/**/*'",
"test": "nyc mocha",
"test:unit": "nyc --reporter=text-summary --reporter=cobertura --report-dir=reports/unit mocha --reporter mocha-junit-reporter --reporter-options mochaFile=./reports/unit/junit-test-results.xml",
"build": "tsc",
"compile": "tsc -b",
"bump:patch": "bump2version patch && npm version --no-git-tag-version patch",
"bump:minor": "bump2version minor && npm version --no-git-tag-version minor"
},
"dependencies": {
"lodash.difference": "4.5.0",
"lodash.intersection": "4.4.0"
},
"nyc": {
"reporter": [
"html",
"text-summary"
],
"all": true
},
"devDependencies": {
"@types/lodash.difference": "4.5.9",
"@types/lodash.intersection": "4.4.9",
"@types/node": "16.18.126",
"mocha": "11.1.0",
"mocha-junit-reporter": "2.2.1",
"nyc": "17.1.0",
"should": "13.2.3",
"source-map-support": "0.5.21",
"tslint": "5.20.1",
"typescript": "5.7.3"
}
}