Skip to content

Commit

Permalink
chore: sort package.json (#950)
Browse files Browse the repository at this point in the history
  • Loading branch information
G-Rath authored Sep 15, 2023
1 parent 539a78d commit 125a996
Showing 1 changed file with 53 additions and 53 deletions.
106 changes: 53 additions & 53 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,44 @@
"name": "memfs",
"version": "4.3.0",
"description": "In-memory file-system with Node's fs API.",
"author": {
"name": "streamich",
"url": "https://github.com/streamich"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/streamich"
},
"keywords": [
"fs",
"filesystem",
"fs.js",
"memory-fs",
"memfs",
"file",
"file system",
"mount",
"memory",
"in-memory",
"virtual",
"test",
"testing",
"mock",
"fsa",
"file system access",
"native file system",
"webfs",
"crudfs",
"opfs",
"casfs",
"content addressable storage"
],
"homepage": "https://github.com/streamich/memfs",
"repository": {
"type": "git",
"url": "https://github.com/streamich/memfs.git"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/streamich"
},
"license": "Apache-2.0",
"author": {
"name": "streamich",
"url": "https://github.com/streamich"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
Expand All @@ -27,47 +51,23 @@
],
"scripts": {
"build": "tsc -p .",
"build:webfs": "NODE_ENV=production webpack --config ./src/webfs/webpack.config.js",
"clean": "rimraf lib types",
"demo:crud-and-cas": "webpack serve --config ./demo/crud-and-cas/webpack.config.js",
"demo:fsa-to-node-sync-tests": "webpack serve --config ./demo/fsa-to-node-sync-tests/webpack.config.js",
"demo:fsa-to-node-zipfile": "webpack serve --config ./demo/fsa-to-node-zipfile/webpack.config.js",
"demo:git-fsa": "webpack serve --config ./demo/git-fsa/webpack.config.js",
"demo:git-opfs": "webpack serve --config ./demo/git-opfs/webpack.config.js",
"demo:webfs": "webpack serve --config ./src/webfs/webpack.config.js",
"prettier": "prettier --ignore-path .gitignore --write \"src/**/*.{ts,js}\"",
"prettier:diff": "prettier -l \"src/**/*.{ts,js}\"",
"test": "jest --maxWorkers 2",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"tslint": "tslint \"src/**/*.ts\" -t verbose",
"typecheck": "tsc -p .",
"watch": "watch \"npm run build\" ./src",
"build:webfs": "NODE_ENV=production webpack --config ./src/webfs/webpack.config.js",
"demo:webfs": "webpack serve --config ./src/webfs/webpack.config.js",
"demo:fsa-to-node-sync-tests": "webpack serve --config ./demo/fsa-to-node-sync-tests/webpack.config.js",
"demo:fsa-to-node-zipfile": "webpack serve --config ./demo/fsa-to-node-zipfile/webpack.config.js",
"demo:git-fsa": "webpack serve --config ./demo/git-fsa/webpack.config.js",
"demo:git-opfs": "webpack serve --config ./demo/git-opfs/webpack.config.js",
"demo:crud-and-cas": "webpack serve --config ./demo/crud-and-cas/webpack.config.js"
"watch": "watch \"npm run build\" ./src"
},
"keywords": [
"fs",
"filesystem",
"fs.js",
"memory-fs",
"memfs",
"file",
"file system",
"mount",
"memory",
"in-memory",
"virtual",
"test",
"testing",
"mock",
"fsa",
"file system access",
"native file system",
"webfs",
"crudfs",
"opfs",
"casfs",
"content addressable storage"
],
"commitlint": {
"extends": [
"@commitlint/config-conventional"
Expand All @@ -78,6 +78,16 @@
"path": "git-cz"
}
},
"prettier": {
"arrowParens": "avoid",
"bracketSpacing": true,
"printWidth": 120,
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all",
"useTabs": false
},
"release": {
"branches": [
"master",
Expand Down Expand Up @@ -110,9 +120,6 @@
"^.+\\.tsx?$": "ts-jest"
}
},
"peerDependencies": {
"tslib": "2"
},
"dependencies": {
"json-joy": "^9.2.0",
"thingies": "^1.11.1"
Expand Down Expand Up @@ -150,17 +157,10 @@
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"peerDependencies": {
"tslib": "2"
},
"engines": {
"node": ">= 4.0.0"
},
"prettier": {
"printWidth": 120,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": true,
"arrowParens": "avoid"
}
}

0 comments on commit 125a996

Please sign in to comment.