-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.98 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
{
"name": "@mtorre4580/is-deprecated",
"version": "0.0.2",
"description": "Library to deprecated properties and methods in objects or functions",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mtorre4580/is-deprecated"
},
"homepage": "https://github.com/mtorre4580/is-deprecated/blob/main/README.md",
"bugs": {
"url": "https://github.com/mtorre4580/is-deprecated/issues"
},
"keywords": [
"deprecated",
"javascript",
"nodejs",
"functions",
"methods",
"utility"
],
"author": "mtorre4580",
"files": [
"dist"
],
"main": "./dist/is-deprecated.umd.js",
"module": "./dist/is-deprecated.es.js",
"exports": {
".": {
"import": "./dist/is-deprecated.es.js",
"require": "./dist/is-deprecated.umd.js"
}
},
"scripts": {
"prepare": "husky install",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint '**/*.js'",
"lint:fix": "eslint '**/*.js' --fix",
"test": "jest --config jest.config.js",
"test:coverage": "jest --config jest.config.js --coverage",
"test:ci": "node --expose-gc ./node_modules/.bin/jest --ci --bail --runInBand --logHeapUsage --coverage",
"update-changelog": "git fetch && auto-changelog",
"audit": "yarn audit --groups 'dependencies devDependencies'"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.4",
"auto-changelog": "^2.4.0",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"vite": "^5.0.10"
},
"auto-changelog": {
"output": "CHANGELOG.md",
"template": "update-changelog.hbs",
"unreleased": false,
"commitLimit": false,
"startingVersion": "0.0.1",
"sortCommits": "date-desc",
"hideEmptyReleases": true
},
"engines": {
"node": ">=16"
}
}