forked from metarhia/sandboxed-fs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.08 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
{
"name": "sandboxed-fs",
"version": "0.3.2",
"author": "Mykola Bilochub <nbelochub@gmail.com>",
"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": "nbelochub@gmail.com"
},
"main": "./sandboxed-fs.js",
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-metarhia": "^7.0.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-prettier": "^3.0.1",
"prettier": "^1.17.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\""
}
}