-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
64 lines (64 loc) · 1.44 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
{
"version": "1.2.1-0",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"lint": "eslint --fix src/**/*.{js,ts}",
"prepare": "husky install",
"size": "size-limit",
"release": "np"
},
"peerDependencies": {},
"name": "paymongo.js",
"author": "princejoogie",
"module": "dist/paymongo.js.esm.js",
"size-limit": [
{
"path": "dist/paymongo.js.cjs.production.min.js",
"limit": "15 KB"
},
{
"path": "dist/paymongo.js.esm.js",
"limit": "15 KB"
}
],
"devDependencies": {
"@size-limit/preset-small-lib": "^7.0.5",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"dotenv": "^11.0.0",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.7",
"np": "^7.6.0",
"prettier": "2.5.1",
"size-limit": "^7.0.5",
"tsdx": "^0.14.1",
"tslib": "^2.3.1",
"typescript": "^4.5.4"
},
"dependencies": {
"axios": "^0.24.0",
"zustand": "^3.6.8"
},
"lint-staged": {
"*.{ts,d.ts}": "eslint --cache --fix --no-ignore",
"*.{ts,d.ts,md,json}": "prettier --write"
},
"repository": {
"type": "git",
"url": "https://github.com/princejoogie/paymongo.js.git"
}
}