-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 1.1 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
{
"name": "@file-services/memory",
"description": "An in-memory, sync/async, file system implementation.",
"version": "9.4.1",
"main": "./dist/fs-memory.cjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/fs-memory.mjs",
"require": "./dist/fs-memory.cjs"
},
"./package.json": "./package.json"
},
"scripts": {
"test": "npm run test:node && npm run test:browser",
"test:node": "mocha \"./dist/test/*.{spec,nodespec}.js\"",
"test:browser": "mocha-web \"./dist/test/**/*.spec.js\""
},
"dependencies": {
"@file-services/path": "^9.4.1",
"@file-services/types": "^9.4.1",
"@file-services/utils": "^9.4.1"
},
"files": [
"dist",
"!dist/test",
"src",
"!*/tsconfig.{json,tsbuildinfo}"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/wixplosives/file-services.git",
"directory": "packages/memory"
},
"homepage": "https://github.com/wixplosives/file-services",
"publishConfig": {
"access": "public"
},
"sideEffects": false
}