-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
95 lines (95 loc) · 2.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
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "maquette-query",
"version": "0.11.7",
"description": "Query utility for maquette's virtual DOM",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"scripts": {
"prepare": "husky install",
"coverage": "cross-env TS_NODE_FAST=true nyc --check-coverage -- mocha --compilers ts:ts-node/register --reporter dot --recursive",
"coverage-show": "open-cli build/coverage/index.html",
"assist": "tsa",
"fix": "tsa fix",
"fixall": "tsa fixall",
"ci": "tsa ci",
"prepublishOnly": "tsa clean && npm -s run dist",
"dist": "tsc -p ./src/tsconfig.json",
"clean": "tsa clean",
"release": "tsa release",
"postcheckout": "node node_modules/typescript-assistant/dist/index post-checkout",
"postmerge": "node node_modules/typescript-assistant/dist/index post-merge",
"precommit": "tsa pre-commit",
"prepush": "tsa pre-push"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"reporter": [
"json",
"html",
"text-summary"
],
"cache": true,
"temp-directory": "./build/nyc/cache",
"all": true,
"check-coverage": false,
"report-dir": "./build/coverage",
"es-module": false,
"lines": 80,
"statements": 80,
"functions": 50,
"branches": 80,
"watermarks": {
"lines": [
75,
100
],
"functions": [
75,
100
],
"branches": [
75,
100
],
"statements": [
75,
100
]
}
},
"repository": {
"type": "git",
"url": "https://github.com/AFASSoftware/maquette-query"
},
"keywords": [
"maquette",
"virtual",
"dom"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/AFASSoftware/maquette-query/issues"
},
"homepage": "https://github.com/AFASSoftware/maquette-query#readme",
"devDependencies": {
"@types/sinon": "10.0.11",
"@types/sinon-chai": "3.2.8",
"maquette": "3.5.2",
"open-cli": "7.0.1",
"sinon": "13.0.1",
"sinon-chai": "3.7.0",
"typescript-assistant": "^0.56.6"
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module",
"parser": "typescript"
}
}
}