-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.21 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
52
53
54
55
56
57
58
{
"name": "@tubu/folder-builder",
"version": "1.1.0",
"description": "Easy way to build folder",
"main": "./src/index.js",
"scripts": {
"test": "jest --silent",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage=true"
},
"repository": "tubuarge/folder-builder"
,
"keywords": [
"folder",
"file",
"builder",
"fs",
"fs-extra"
],
"files": [
"LICENSE",
"README.md",
"src/"
],
"license": "MIT",
"dependencies": {
"archiver": "^4.0.1",
"fs-extra": "^9.0.1"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.13.2",
"jest": "^26.0.1"
},
"jest": {
"verbose": true,
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/"
],
"coverageDirectory": "./coverage/"
},
"engines": {
"node": ">= 10.16.0"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/tubuarge/folder-builder/blob/master/LICENSE.txt"
}
],
"bugs": {
"url": "https://github.com/tubuarge/folder-builder/issues"
},
"homepage": "https://github.com/tubuarge/folder-builder"
}