-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
51 lines (51 loc) · 1.2 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
43
44
45
46
47
48
49
50
51
{
"name": "filendir",
"version": "2.0.1",
"description": "Filendir allows you to write a file and create the directories found in its path if needed.",
"main": "lib/filendir.js",
"scripts": {
"lint": "eslint lib",
"test": "jest",
"tag-release": "standard-version"
},
"keywords": [
"write",
"file",
"create",
"directory",
"mkdirp"
],
"author": "Kevin Purnelle",
"email": "[email protected]",
"repository": {
"type": "git",
"url": "[email protected]:AoDev/Filendir.git"
},
"bugs": {
"url": "https://github.com/AoDev/Filendir/issues"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "25.2.2",
"babel-eslint": "10.1.0",
"babel-jest": "26.0.1",
"eslint": "8.14.0",
"eslint-config-prettier": "8.5.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-promise": "6.0.0",
"eslint-plugin-standard": "5.0.0",
"jest": "26.0.1",
"prettier": "2.6.2",
"rimraf": "3.0.2",
"standard-version": "9.3.2"
},
"dependencies": {
"mkdirp": "^1.0.4"
},
"engines": {
"node": ">=10"
}
}