source: node_modules/fs-extra/package.json@ 24819a8

main
Last change on this file since 24819a8 was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 1.6 KB
Line 
1{
2 "name": "fs-extra",
3 "version": "9.1.0",
4 "description": "fs-extra contains methods that aren't included in the vanilla Node.js fs package. Such as recursive mkdir, copy, and remove.",
5 "engines": {
6 "node": ">=10"
7 },
8 "homepage": "https://github.com/jprichardson/node-fs-extra",
9 "repository": {
10 "type": "git",
11 "url": "https://github.com/jprichardson/node-fs-extra"
12 },
13 "keywords": [
14 "fs",
15 "file",
16 "file system",
17 "copy",
18 "directory",
19 "extra",
20 "mkdirp",
21 "mkdir",
22 "mkdirs",
23 "recursive",
24 "json",
25 "read",
26 "write",
27 "extra",
28 "delete",
29 "remove",
30 "touch",
31 "create",
32 "text",
33 "output",
34 "move",
35 "promise"
36 ],
37 "author": "JP Richardson <jprichardson@gmail.com>",
38 "license": "MIT",
39 "dependencies": {
40 "at-least-node": "^1.0.0",
41 "graceful-fs": "^4.2.0",
42 "jsonfile": "^6.0.1",
43 "universalify": "^2.0.0"
44 },
45 "devDependencies": {
46 "coveralls": "^3.0.0",
47 "klaw": "^2.1.1",
48 "klaw-sync": "^3.0.2",
49 "minimist": "^1.1.1",
50 "mocha": "^5.0.5",
51 "nyc": "^15.0.0",
52 "proxyquire": "^2.0.1",
53 "read-dir-files": "^0.1.1",
54 "standard": "^14.1.0"
55 },
56 "main": "./lib/index.js",
57 "files": [
58 "lib/",
59 "!lib/**/__tests__/"
60 ],
61 "scripts": {
62 "full-ci": "npm run lint && npm run coverage",
63 "coverage": "nyc -r lcovonly npm run unit",
64 "coveralls": "coveralls < coverage/lcov.info",
65 "lint": "standard",
66 "test-find": "find ./lib/**/__tests__ -name *.test.js | xargs mocha",
67 "test": "npm run lint && npm run unit",
68 "unit": "node test.js"
69 }
70}
Note: See TracBrowser for help on using the repository browser.