-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.68 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
{
"name": "@vorlefan/path",
"version": "1.8.35",
"description": "Easy access and handler for folders and files paths with several tools",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": {
"name": "Michael Willian Santos",
"email": "[email protected]",
"url": "https://path.vorlefan.com/"
},
"keywords": [
"path",
"routes",
"files",
"folder",
"tree"
],
"scripts": {
"build": "webpack --mode production",
"prepublish": "webpack --mode production",
"format": "prettier \"**/*\" --ignore-unknown",
"format:write": "yarn run format --write",
"lint:prune": "ts-prune",
"lint:spelling": "cspell \"**\" \".github/**/*\"",
"prepare": "husky install",
"test": "vitest",
"dev": "npm link && nodemon"
},
"license": "MIT",
"private": false,
"devDependencies": {
"@babel/core": "^7.21.0",
"@typescript-eslint/parser": "^5.38.1",
"@vitest/coverage-istanbul": "^0.25.8",
"babel-loader": "^9.1.2",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"nodemon": "^2.0.21",
"octokit": "^2.0.10",
"prettier": "^2.7.1",
"release-it": "^15.5.1",
"ts-loader": "^9.4.2",
"ts-prune": "^0.10.3",
"typescript": "^4.9.4",
"vitest": "^0.26.2",
"webpack": "^5.76.0",
"webpack-cli": "^5.0.1"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/DaxSoft/path"
},
"dependencies": {}
}