-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.23 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
{
"name": "prudence",
"version": "0.10.0",
"description": "The Simple Object Validator.",
"main": "js/main.js",
"scripts": {
"test": "tsc && nyc mocha",
"lint": "eslint ./src --ext .ts && eslint ./__tests__ --ext .js",
"build": "tsc",
"prepublish": "pnpm build"
},
"nyc": {
"reporter": [
"text",
"html",
"lcov"
],
"branches": 80,
"lines": 80,
"functions": 80,
"statements": 80
},
"keywords": [
"object",
"validator",
"validation"
],
"files": [
"js/**/*.js",
"js/**/*.d.ts"
],
"author": "zkldi",
"license": "MIT",
"devDependencies": {
"@types/express-serve-static-core": "^4.17.18",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.28",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"mocha": "^8.3.0",
"nyc": "^15.1.0",
"prettier": "^2.3.0",
"typescript": "^4.1.5",
"unexpected": "^12.0.0"
}
}