forked from geekmdtravis/react-hook-ccl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.31 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.31 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
{
"name": "react-hook-useccl",
"author": "geekmdtravis",
"module": "dist/react-hook-useccl.esm.js",
"version": "0.5.0",
"license": "MIT",
"description": "A useful React hook written in TypeScript which wraps the XMLCclRequest exposed as a native function to the Microsoft Edge Chromium Browser in the Cerner Discern environment (e.g. PowerChart).",
"repository": {
"type": "git",
"url": "git+https://github.com/geekmdtravis/react-hook-ccl.git"
},
"bugs": {
"url": "https://github.com/geekmdtravis/react-hook-ccl/issues"
},
"homepage": "https://github.com/geekmdtravis/react-hook-ccl#readme",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=14",
"yarn": "please-use-npm"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --silent",
"test:watch": "tsdx test --watch --silent",
"test:watchall": "tsdx test --watchAll --silent",
"lint": "tsdx lint src",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why",
"demo": "cd demo-app && npm i && npm run dev"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"size-limit": [
{
"path": "dist/react-hook-useccl.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/react-hook-useccl.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@size-limit/preset-small-lib": "7.0.5",
"@size-limit/webpack": "7.0.5",
"@size-limit/webpack-why": "7.0.5",
"@types/react": "^17.0.0 || ^18.0.0",
"@types/react-dom": "^17.0.0 || ^18.0.0",
"easy-ccl-request": "1.0.0",
"husky": "7.0.4",
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0",
"size-limit": "7.0.5",
"tsdx": "0.14.1",
"tslib": "2.3.1",
"typescript": "4.5.4"
},
"peerDependencies": {
"easy-ccl-request": "^1.0.0",
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0"
},
"jest": {
"verbose": true,
"silent": true,
"collectCoverage": true,
"testPathIgnorePatterns": [
"index.ts"
],
"coveragePathIgnorePatterns": [
"index.ts"
]
}
}