-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 2.84 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
{
"name": "lzo-prop-string",
"version": "1.1.0",
"description": "Accesses the object's properties via string.",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"engines": {
"yarn": ">=1.22.19",
"npm": ">=8.19.2 <=9.6.7",
"node": ">=18.17.0 <=19.0.0"
},
"repository": "git://github.com/Lack-Zillions-Over/prop-string.git",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@types/ioredis": "^5.0.0",
"@types/jest": "~29.5.3",
"@types/node": "~20.4.6",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "~6.2.1",
"@typescript-eslint/parser": "~6.2.1",
"cz-conventional-changelog": "3.3.0",
"dotenv": "^16.3.1",
"dotenv-cli": "^7.2.1",
"eslint": "~8.46.0",
"eslint-config-prettier": "~8.10.0",
"eslint-plugin-jest": "~27.2.3",
"jest": "~29.6.2",
"lint-staged": "^13.2.3",
"npm-run-all": "^4.1.5",
"prettier": "~3.0.1",
"rimraf": "~5.0.1",
"standard-version": "^9.5.0",
"ts-jest": "^29.1.1",
"tsup": "^7.2.0",
"tsx": "^3.12.7",
"typescript": "~5.1.6"
},
"scripts": {
"commit": "cz",
"push:release": "git push --follow-tags origin main",
"post:release": "standard-version && yarn push:release",
"post:prerelease": "standard-version --prerelease alpha && yarn push:release",
"audit-fix": "npx yarn-audit-fix",
"update": "npx yarn upgrade-interactive --latest",
"clean": "rimraf coverage build tmp",
"prebuild": "npx yarn lint && npx yarn type-check",
"build": "tsup src/index.ts --config tsup.config.js",
"build:watch": "tsup src/index.ts --watch --config tsup.config.js",
"build:release": "npm run clean && tsup src/index.ts --config tsup.config.release.js",
"start": "tsx watch src/index.ts",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"format": "prettier --write .",
"lint": "eslint . --ext .ts",
"test": "jest --watchAll --detectOpenHandles",
"test:ci": "jest --ci --detectOpenHandles"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.ts": "tsc-files --noEmit",
"src/**/*": [
"yarn lint",
"yarn format"
]
},
"keywords": [
"lzo",
"prop-string",
"node",
"ts",
"typescript"
],
"files": [
"build/*.js",
"build/**/*.js",
"build/*.d.ts",
"build/**/*.d.ts"
],
"author": "GuilhermeSantos001 <luizgp120@hotmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Lack-Zillions-Over/prop-string/issues"
},
"homepage": "https://github.com/Lack-Zillions-Over/prop-string#readme",
"dependencies": {},
"volta": {
"node": "18.17.0",
"yarn": "1.22.19"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}