-
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": "sandboxed-fs",
"version": "0.3.2",
"author": "Mykola Bilochub <[email protected]>",
"description": "Sandboxed Wrapper for Node.js File System API",
"license": "MIT",
"keywords": [
"fs",
"metarhia",
"impress",
"sandbox",
"sandboxed",
"application"
],
"repository": {
"type": "git",
"url": "https://github.com/metarhia/sandboxed-fs"
},
"bugs": {
"url": "https://github.com/metarhia/sandboxed-fs/issues",
"email": "[email protected]"
},
"main": "sandboxed-fs.js",
"files": [],
"devDependencies": {
"eslint": "^8.44.0",
"eslint-config-metarhia": "^8.2.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^5.0.0-alpha.2",
"prettier": "^3.0.0"
},
"engines": {
"node": ">=8.0.0"
},
"readmeFilename": "README.md",
"scripts": {
"test": "npm run lint && node test.js",
"lint": "eslint . && prettier -c \"**/*.js\" \"**/*.json\" \"**/*.md\" \".*rc\" \"**/*.yml\"",
"fmt": "prettier --write \"**/*.js\" \"**/*.json\" \"**/*.md\" \".*rc\" \"**/*.yml\""
}
}