-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.08 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
{
"name": "blork",
"description": "Blork! Mini runtime type checking in Javascript",
"version": "9.0.0",
"license": "0BSD",
"author": "Dave Houlbrooke <[email protected]>",
"main": "lib/exports.js",
"engineStrict": true,
"engines": {
"node": ">=10.0.0"
},
"repository": {
"type": "git",
"url": "git://github.com/dhoulb/blork.git"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.4.1",
"jest": "^26.6.3",
"prettier": "^2.5.1"
},
"scripts": {
"fix": "npm run fix:prettier && npm run fix:eslint",
"fix:prettier": "prettier '**/*.{md,html,yml,yaml,json,css}' --write",
"fix:eslint": "eslint '**/*.{ts,tsx,js,jsx}' --fix",
"test": "npm run test:eslint && npm run test:jest",
"test:eslint": "eslint --cache '**/*.{ts,tsx,js,jsx}'",
"test:jest": "jest --coverage",
"test:jest:watch": "jest --watchAll"
},
"jest": {
"testURL": "http://localhost",
"collectCoverage": true,
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
}
}