-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.46 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
{
"name": "find-entry-points",
"version": "1.0.0",
"author": {
"name": "Tomer Aberbach",
"email": "tomer@aberba.ch",
"url": "https://tomeraberba.ch"
},
"description": "Find the entry points in a set of JavaScript files.",
"keywords": [
"esm",
"imports",
"graph",
"entry",
"entries",
"point",
"points",
"tarjan"
],
"homepage": "https://github.com/TomerAberbach/find-entry-points",
"repository": "TomerAberbach/find-entry-points",
"bugs": {
"url": "https://github.com/TomerAberbach/find-entry-points/issues"
},
"license": "Apache-2.0",
"files": [
"src"
],
"type": "module",
"engines": {
"node": ">= 12.17"
},
"exports": "./src/index.js",
"module": "./src/index.js",
"types": "./src/index.d.ts",
"scripts": {
"prepare": "pnpx --no-install simple-git-hooks",
"lint:prettier:base": "prettier --loglevel silent --ignore-path .eslintignore",
"lint:prettier": "run-s \"lint:prettier:base -- --write .\"",
"lint:eslint:base": "eslint --cache --ext js --ignore-path .eslintignore",
"lint:eslint": "run-s \"lint:eslint:base -- --fix .\"",
"lint": "run-s lint:*",
"test:js": "ava",
"test:ts": "tsd",
"test": "run-s test:*",
"coverage": "c8 run-s test:js"
},
"prettier": "@tomer/prettier-config",
"eslintConfig": {
"extends": "@tomer"
},
"lint-staged": {
"*.js": [
"run-s \"lint:prettier:base -- --write {@}\" --",
"run-s \"lint:eslint:base -- --fix {@}\" --"
],
"*.ts": "run-s \"lint:prettier:base -- --write {@}\" --",
"*.{json,yml,md}": "run-s \"lint:prettier:base -- --write {@}\" --"
},
"tsd": {
"directory": "./test"
},
"commitlint": {
"extends": "@commitlint/config-conventional"
},
"simple-git-hooks": {
"pre-commit": "pnpx --no-install lint-staged",
"commit-msg": "pnpx --no-install commitlint -e"
},
"dependencies": {
"parse-imports": "1.0.0"
},
"devDependencies": {
"@commitlint/cli": "12.1.4",
"@commitlint/config-conventional": "12.1.4",
"@swc/core": "1.2.59",
"@tomer/eslint-config": "0.1.1",
"@tomer/prettier-config": "0.1.0",
"@types/node": "15.9.0",
"ava": "3.15.0",
"ava-fast-check": "4.0.2",
"c8": "7.7.2",
"eslint": "7.27.0",
"fast-check": "2.16.0",
"get-all-files": "4.0.0",
"lint-staged": "11.0.0",
"npm-run-all": "4.1.5",
"prettier": "2.3.0",
"simple-git-hooks": "2.4.1",
"tsd": "0.16.0",
"typescript": "4.3.2"
}
}