Skip to content

Commit 125a996

Browse files
authored
chore: sort package.json (#950)
1 parent 539a78d commit 125a996

File tree

1 file changed

+53
-53
lines changed

1 file changed

+53
-53
lines changed

package.json

Lines changed: 53 additions & 53 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,44 @@
22
"name": "memfs",
33
"version": "4.3.0",
44
"description": "In-memory file-system with Node's fs API.",
5-
"author": {
6-
"name": "streamich",
7-
"url": "https://github.com/streamich"
8-
},
9-
"funding": {
10-
"type": "github",
11-
"url": "https://github.com/sponsors/streamich"
12-
},
5+
"keywords": [
6+
"fs",
7+
"filesystem",
8+
"fs.js",
9+
"memory-fs",
10+
"memfs",
11+
"file",
12+
"file system",
13+
"mount",
14+
"memory",
15+
"in-memory",
16+
"virtual",
17+
"test",
18+
"testing",
19+
"mock",
20+
"fsa",
21+
"file system access",
22+
"native file system",
23+
"webfs",
24+
"crudfs",
25+
"opfs",
26+
"casfs",
27+
"content addressable storage"
28+
],
1329
"homepage": "https://github.com/streamich/memfs",
1430
"repository": {
1531
"type": "git",
1632
"url": "https://github.com/streamich/memfs.git"
1733
},
34+
"funding": {
35+
"type": "github",
36+
"url": "https://github.com/sponsors/streamich"
37+
},
1838
"license": "Apache-2.0",
39+
"author": {
40+
"name": "streamich",
41+
"url": "https://github.com/streamich"
42+
},
1943
"main": "lib/index.js",
2044
"types": "lib/index.d.ts",
2145
"files": [
@@ -27,47 +51,23 @@
2751
],
2852
"scripts": {
2953
"build": "tsc -p .",
54+
"build:webfs": "NODE_ENV=production webpack --config ./src/webfs/webpack.config.js",
3055
"clean": "rimraf lib types",
56+
"demo:crud-and-cas": "webpack serve --config ./demo/crud-and-cas/webpack.config.js",
57+
"demo:fsa-to-node-sync-tests": "webpack serve --config ./demo/fsa-to-node-sync-tests/webpack.config.js",
58+
"demo:fsa-to-node-zipfile": "webpack serve --config ./demo/fsa-to-node-zipfile/webpack.config.js",
59+
"demo:git-fsa": "webpack serve --config ./demo/git-fsa/webpack.config.js",
60+
"demo:git-opfs": "webpack serve --config ./demo/git-opfs/webpack.config.js",
61+
"demo:webfs": "webpack serve --config ./src/webfs/webpack.config.js",
3162
"prettier": "prettier --ignore-path .gitignore --write \"src/**/*.{ts,js}\"",
3263
"prettier:diff": "prettier -l \"src/**/*.{ts,js}\"",
3364
"test": "jest --maxWorkers 2",
3465
"test:coverage": "jest --coverage",
3566
"test:watch": "jest --watch",
3667
"tslint": "tslint \"src/**/*.ts\" -t verbose",
3768
"typecheck": "tsc -p .",
38-
"watch": "watch \"npm run build\" ./src",
39-
"build:webfs": "NODE_ENV=production webpack --config ./src/webfs/webpack.config.js",
40-
"demo:webfs": "webpack serve --config ./src/webfs/webpack.config.js",
41-
"demo:fsa-to-node-sync-tests": "webpack serve --config ./demo/fsa-to-node-sync-tests/webpack.config.js",
42-
"demo:fsa-to-node-zipfile": "webpack serve --config ./demo/fsa-to-node-zipfile/webpack.config.js",
43-
"demo:git-fsa": "webpack serve --config ./demo/git-fsa/webpack.config.js",
44-
"demo:git-opfs": "webpack serve --config ./demo/git-opfs/webpack.config.js",
45-
"demo:crud-and-cas": "webpack serve --config ./demo/crud-and-cas/webpack.config.js"
69+
"watch": "watch \"npm run build\" ./src"
4670
},
47-
"keywords": [
48-
"fs",
49-
"filesystem",
50-
"fs.js",
51-
"memory-fs",
52-
"memfs",
53-
"file",
54-
"file system",
55-
"mount",
56-
"memory",
57-
"in-memory",
58-
"virtual",
59-
"test",
60-
"testing",
61-
"mock",
62-
"fsa",
63-
"file system access",
64-
"native file system",
65-
"webfs",
66-
"crudfs",
67-
"opfs",
68-
"casfs",
69-
"content addressable storage"
70-
],
7171
"commitlint": {
7272
"extends": [
7373
"@commitlint/config-conventional"
@@ -78,6 +78,16 @@
7878
"path": "git-cz"
7979
}
8080
},
81+
"prettier": {
82+
"arrowParens": "avoid",
83+
"bracketSpacing": true,
84+
"printWidth": 120,
85+
"semi": true,
86+
"singleQuote": true,
87+
"tabWidth": 2,
88+
"trailingComma": "all",
89+
"useTabs": false
90+
},
8191
"release": {
8292
"branches": [
8393
"master",
@@ -110,9 +120,6 @@
110120
"^.+\\.tsx?$": "ts-jest"
111121
}
112122
},
113-
"peerDependencies": {
114-
"tslib": "2"
115-
},
116123
"dependencies": {
117124
"json-joy": "^9.2.0",
118125
"thingies": "^1.11.1"
@@ -150,17 +157,10 @@
150157
"webpack-cli": "^5.1.4",
151158
"webpack-dev-server": "^4.15.1"
152159
},
160+
"peerDependencies": {
161+
"tslib": "2"
162+
},
153163
"engines": {
154164
"node": ">= 4.0.0"
155-
},
156-
"prettier": {
157-
"printWidth": 120,
158-
"tabWidth": 2,
159-
"useTabs": false,
160-
"semi": true,
161-
"singleQuote": true,
162-
"trailingComma": "all",
163-
"bracketSpacing": true,
164-
"arrowParens": "avoid"
165165
}
166166
}

0 commit comments

Comments
 (0)