This repository has been archived by the owner on Jan 22, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.17 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
96
97
{
"name": "maquette-jsx",
"version": "3.0.1",
"description": "A library to enable maquette to use jsx",
"module": "./dist/index.js",
"main": "./dist/maquette-jsx.cjs.js",
"browser": "./dist/maquette-jsx.umd.js",
"types": "./dist/index.d.ts",
"scripts": {
"prepare": "husky install",
"prepublishOnly": "tsa clean && npm -s run dist",
"assist": "tsa assist",
"release": "tsa release",
"fix": "tsa fix",
"fixall": "tsa fixall",
"clean": "tsa clean",
"dist": "tsc -p ./src/tsconfig.json && rollup -c && uglifyjs ./dist/maquette-jsx.umd.js -c unsafe=true -m -o ./dist/maquette-jsx.umd.min.js",
"ci": "tsa ci",
"test": "tsa ci",
"coverage-show": "opn build/coverage/index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AFASSoftware/maquette-jsx.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/AFASSoftware/maquette-jsx/issues"
},
"homepage": "https://github.com/AFASSoftware/maquette-jsx#readme",
"peerDependencies": {
"maquette": ">=3.5.1"
},
"devDependencies": {
"@types/mocha": "9.1.0",
"@types/node": "17.0.23",
"jsdom": "19.0.0",
"jsdom-global": "3.0.2",
"maquette": "3.5.2",
"mocha": "9.2.2",
"rollup": "2.70.1",
"typescript-assistant": "^0.56.6",
"uglify-js": "3.15.3"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"exclude": [
"**/*.d.ts"
],
"extension": [
".ts"
],
"reporter": [
"lcov",
"html",
"text-summary"
],
"require": "ts-node/register",
"cache": true,
"temp-directory": "./build/nyc/cache",
"all": false,
"check-coverage": false,
"report-dir": "./build/coverage",
"es-module": false,
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100,
"watermarks": {
"lines": [
75,
100
],
"functions": [
75,
100
],
"branches": [
75,
100
],
"statements": [
75,
100
]
}
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module",
"parser": "typescript"
}
}
}