-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.41 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
{
"name": "look-it-up",
"version": "2.1.0",
"description": "Find a file or directory by walking up parent directories recursively. Zero dependency.",
"sideEffects": false,
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"scripts": {
"clean": "rm -rf .cache dist",
"dts": "tsc -p tsconfig.dts.json",
"bundle": "rollup -c",
"build": "npm run clean && npm run dts && npm run bundle",
"lint": "ts-standardx",
"lint:fix": "ts-standardx --fix",
"test": "npm run lint && npm run build && jest --no-cache"
},
"repository": {
"type": "git",
"url": "git+https://github.com/exuanbo/look-it-up.git"
},
"keywords": [
"look-up",
"find-up",
"path",
"file",
"directory",
"search",
"match",
"recursive"
],
"author": "exuanbo",
"license": "MIT",
"bugs": {
"url": "https://github.com/exuanbo/look-it-up/issues"
},
"homepage": "https://github.com/exuanbo/look-it-up#readme",
"devDependencies": {
"@types/jest": "27.0.3",
"@types/node": "16.11.11",
"esbuild": "0.14.2",
"jest": "27.4.3",
"rollup": "2.60.2",
"rollup-plugin-dts": "4.0.1",
"rollup-plugin-esbuild-transform": "1.3.2",
"ts-jest": "27.0.7",
"ts-standardx": "0.8.4",
"typescript": "4.4.4"
}
}