-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 1.04 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
{
"name": "@file-services/resolve",
"description": "Isomorphic, fs-agnostic implementation of the Node resolution algorithm.",
"version": "9.4.1",
"main": "./dist/fs-resolve.cjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/fs-resolve.mjs",
"require": "./dist/fs-resolve.cjs"
},
"./package.json": "./package.json"
},
"scripts": {
"test": "npm run test:node && npm run test:browser",
"test:node": "mocha \"./test/*.{spec,nodespec}.ts?(x)\"",
"test:browser": "mocha-web \"./test/**/*.spec.ts?(x)\""
},
"dependencies": {
"type-fest": "^4.32.0"
},
"files": [
"dist",
"!dist/test",
"src",
"!*/tsconfig.{json,tsbuildinfo}"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/wixplosives/file-services.git",
"directory": "packages/resolve"
},
"homepage": "https://github.com/wixplosives/file-services",
"publishConfig": {
"access": "public"
},
"sideEffects": false
}