-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 2.91 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "@tincre/promo-node",
"version": "0.1.3",
"scope": "@tincre",
"repository": {
"type": "git",
"url": "git+https://github.com/Tincre/promo-node.git"
},
"license": "MPL-2.0",
"author": "Jason R. Stevens, CFA on behalf of Tincre <[email protected]> (https://tincre.com)",
"main": "dist/index.js",
"module": "dist/promo-node.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"homepage": "https://github.com/Tincre/promo-node#readme",
"bugs": {
"url": "https://github.com/Tincre/promo-node/issues"
},
"scripts": {
"analyze": "size-limit --why",
"build": "dts build",
"lint": "dts lint",
"prepare": "dts build && husky install",
"size": "size-limit",
"start": "dts watch",
"test": "dts test --passWithNoTests --coverage"
},
"browser": {
"fs": false,
"path": false,
"crypto": false,
"stream": false,
"util": false
},
"husky": {
"hooks": {
"pre-commit": "dts lint --fix"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"jest": {
"testEnvironment": "jsdom",
"moduleNameMapper": {
"\\.(css|less)$": "identity-obj-proxy",
"\\.(svg)$": "<rootDir>/__mocks__/filemock.js"
},
"transform": {
"\\.(ts|tsx)$": "ts-jest"
}
},
"peerDependencies": {
"react": ">=16",
"react-dom": ">=16",
"@aws-sdk/client-s3": ">=3.481.0",
"@aws-sdk/s3-request-presigner": ">=3.481.0"
},
"engines": {
"node": ">=18"
},
"size-limit": [
{
"path": "dist/promo-node.cjs.production.min.js",
"limit": "100 KB"
},
{
"path": "dist/promo-node.esm.js",
"limit": "100 KB"
}
],
"devDependencies": {
"@aws-sdk/client-s3": "^3.481.0",
"@aws-sdk/s3-request-presigner": "^3.481.0",
"@size-limit/preset-small-lib": "^7.0.8",
"@testing-library/react": "~12",
"@tsconfig/create-react-app": "^1.0.2",
"@tsconfig/recommended": "^1.0.1",
"@types/jest": "^28.1.6",
"@types/node": "^17.0.25",
"@types/react": "^18.0.6",
"@types/react-dom": "^18.0.2",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"dts-cli": "^1.5.1",
"eslint": "^8.13.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.0",
"identity-obj-proxy": "^3.0.0",
"prettier": "^2.6.2",
"react": "~17",
"react-dom": "~17",
"rollup-plugin-import-css": "^3.0.3",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-svg": "^2.0.0",
"size-limit": "^7.0.8",
"ts-jest": "^28.0.7",
"tslib": "^2.3.1",
"typescript": "^4.6.3"
},
"dependencies": {
"@types/jsonwebtoken": ">=9",
"cross-fetch": ">=3.0",
"jsonwebtoken": ">=9"
}
}