-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
54 lines (54 loc) · 1.06 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
{
"name": "edge-paths",
"version": "3.0.5",
"description": "Get the paths of edge browser easily",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"repository": "shirshak55/edge-paths",
"funding": "https://github.com/sponsors/shirshak55",
"author": "shirshak",
"license": "MIT",
"private": false,
"type": "module",
"files": [
"dist/index.js",
"dist/index.d.ts"
],
"keywords": [
"browser",
"edge",
"paths",
"edge-paths",
"exists",
"path"
],
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"watch": "tsc --watch",
"build": "tsc",
"prepare":"husky install",
"test": "node tests/index.js"
},
"exports": "./dist/index.js",
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@commitlint/cz-commitlint": "^17.4.2",
"@types/node": "^16.11.9",
"commitizen": "^4.3.0",
"got": "^11.8.6",
"husky": "^8.0.3",
"typescript": "^4.5.2"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"dependencies": {
"@types/which": "^2.0.1",
"which": "^2.0.2"
}
}