-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.67 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 2.67 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
101
102
103
104
105
{
"name": "@baadal-sdk/utils",
"version": "0.12.0",
"description": "Common utils for developers",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"typings": "dist/types/index.d.ts",
"source": "src/index.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"./cjs": "./dist/cjs/index.js"
},
"files": [
"dist",
"src"
],
"sideEffects": false,
"author": "Abhishek Raj <abhi@raj.me>",
"license": "MIT",
"engines": {
"node": ">=14.10.0"
},
"scripts": {
"build": "npm run verify && bash tasks/build.sh",
"clean": "shx rm -rf dist",
"lint": "eslint '**/*.{js,jsx,ts,tsx}'",
"lint:fix": "npm run lint -- --fix",
"prepub": "run-s --silent clean build",
"pub": "npm run prepub && npm publish",
"pub:test": "npm run prepub && npm publish --dry-run",
"verify": "jsonlint -q tsconfig.json",
"blame": "git log -S",
"hist": "git log --oneline | grep -i",
"follow": "git log --follow --oneline",
"ncu": "ncu",
"ncuu": "ncu -u"
},
"devDependencies": {
"@babel/core": "7.15.5",
"@babel/preset-env": "7.15.6",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "7.15.0",
"@types/node": "16.9.6",
"@types/react": "^16.0.0",
"@types/react-dom": "^16.0.0",
"@typescript-eslint/eslint-plugin": "4.31.2",
"@typescript-eslint/parser": "4.31.2",
"babel-loader": "8.2.2",
"eslint": "7.32.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-airbnb-typescript": "14.0.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.26.0",
"eslint-plugin-react-hooks": "4.2.0",
"husky": "4.3.8",
"jsonlint": "1.6.3",
"lint-staged": "11.1.2",
"npm-run-all": "4.1.5",
"prettier": "2.4.1",
"shx": "0.3.3",
"typescript": "4.4.3",
"webpack": "5.53.0",
"webpack-cli": "4.8.0",
"webpack-node-externals": "3.0.0"
},
"dependencies": {
"core-js": "3.18.0",
"js-base64": "^3.7.2",
"sha-1": "^1.0.0"
},
"peerDependencies": {
"react": ">=16.8.6",
"react-dom": ">=16.8.6"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"react-dom": {
"optional": true
}
},
"browserslist": [
"chrome >= 23"
],
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/baadal/utils.git"
},
"homepage": "https://github.com/baadal/utils#readme"
}