-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.82 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "deep-boolean-validator",
"author": "Cole Robertson",
"friendlyName": "Validator",
"version": "1.1.1",
"description": "Generic deep boolean validator with several abstractions",
"license": "MIT",
"repository": "https://github.com/cole-robertson/deep-boolean-validator.git",
"main": "dist/src/index.js",
"engines": {
"node": ">=10.13.*"
},
"files": [
"dist/src"
],
"typings": "dist/src/index.d.ts",
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/mocha": "^8.0.0",
"@types/node": "10.*",
"chai": "^4.1.1",
"husky": "^4.2.5",
"mocha": "^8.0.1",
"mocha-clean": "^1.0.0",
"nyc": "^15.0.0",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"source-map-support": "^0.5.10",
"ts-node": "^8.0.1",
"typescript": "^3.6.3"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"pre-push": "yarn coverage"
}
},
"scripts": {
"build": "tsc",
"clean": "yarn clean:dist && yarn clean:coverage",
"clean:dist": "rm -rf dist",
"clean:coverage": "rm -rf coverage .nyc_output/",
"coverage": "yarn build && nyc mocha --require ts-node/register dev/test/**/*.ts",
"setup": "yarn install",
"test": "yarn build && yarn test:mocha",
"test:mocha": "mocha dist/test/**/*.js",
"prettier": "prettier --write {*,dev/**/*,scripts/**/*}.{js,ts,tsx,json,yaml,md,scss}"
},
"mocha": {
"require": [
"mocha-clean",
"source-map-support/register"
],
"reporter": "spec",
"timeout": 20000,
"exit": true,
"recursive": true
},
"nyc": {
"extension": [
".ts"
],
"reporter": [
"html",
"text"
],
"include": [
"dev/src/**/*.ts"
],
"all": true
},
"dependencies": {
"@types/lodash.isequal": "^4.5.5",
"lodash.isequal": "^4.5.0"
}
}