-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 963 Bytes
/
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
{
"private": true,
"type": "module",
"scripts": {
"pretype-check": "ditto make",
"type-check": "tsc --noEmit",
"pretest": "ditto make",
"test": "node ./scripts/test.js",
"posttest": "npm run --ignore-scripts type-check",
"coverage": "c8 node ./scripts/test.js",
"gen-d-ts": "tsc --allowJs --declaration --emitDeclarationOnly --outDir decls --removeComments ditto-src/*.js"
},
"devDependencies": {
"c8": "7.12.0",
"chalk": "5.2.0",
"esbuild": "0.16.3",
"fast-check": "3.3.0",
"playwright": "1.28.1",
"prettier": "2.8.1",
"typescript": "4.9.4",
"@tsconfig/strictest": "1.0.2"
},
"c8": {
"include": [
"ditto-src",
"dist"
],
"exclude": [
"dist/Main.js",
"dist/Test.js",
"dist/Fuzz.js",
"dist/*_Tests.js",
"dist/Never.js"
],
"extension": "js",
"all": true,
"check-coverage": true,
"lines": 0,
"functions": 100
}
}