forked from AFASSoftware/maquette-advanced-projector
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.5 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 2.5 KB
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
98
99
100
{
"name": "maquette-advanced-projector",
"version": "1.0.4",
"description": "A replacement for maquette's projector that is configurable",
"module": "./dist/index.js",
"main": "./dist/maquette-advanced-projector.cjs.js",
"browser": "./dist/maquette-advanced-projector.umd.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "tsa ci",
"prepare": "npm run fix:hooks",
"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 --bundleConfigAsCjs && uglifyjs ./dist/maquette-advanced-projector.umd.js -c unsafe=true,unsafe_comps=true,unsafe_math=true,passes=3 -m -o ./dist/maquette-advanced-projector.umd.min.js",
"ci": "tsa ci",
"coverage-show": "opn build/coverage/index.html",
"fix:hooks": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AFASSoftware/maquette-advanced-projector.git"
},
"keywords": [
"maquette"
],
"author": "Johan Gorter <johan@johangorter.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/AFASSoftware/maquette-advanced-projector/issues"
},
"homepage": "https://github.com/AFASSoftware/maquette-advanced-projector#readme",
"devDependencies": {
"@types/chai-as-promised": "7.1.5",
"@types/node": "20.5.3",
"@types/sinon": "10.0.16",
"@types/sinon-chai": "3.2.9",
"chai-as-promised": "7.1.1",
"jsdom": "22.1.0",
"jsdom-global": "3.0.2",
"maquette": "3.6.0",
"rollup": "3.20.2",
"sinon": "15.2.0",
"sinon-chai": "3.7.0",
"typescript-assistant": "^0.63.4"
},
"peerDependencies": {
"maquette": ">=3.5.1"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"reporter": [
"lcov",
"html",
"text-summary"
],
"cache": true,
"temp-directory": "./build/nyc/cache",
"all": false,
"check-coverage": true,
"report-dir": "./build/coverage",
"es-module": false,
"lines": 75,
"statements": 75,
"functions": 75,
"branches": 75,
"watermarks": {
"lines": [
75,
100
],
"functions": [
75,
100
],
"branches": [
75,
100
],
"statements": [
75,
100
]
}
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module",
"parser": "typescript"
}
}
}