UNPKG

1.42 kBJSONView Raw
1{
2 "name": "fs-merger",
3 "version": "3.2.0",
4 "description": "Reads files from a real location",
5 "main": "dist/index.js",
6 "types": "dist/index.d.ts",
7 "files": [
8 "dist/"
9 ],
10 "author": "Sparshith NR",
11 "license": "MIT",
12 "scripts": {
13 "build": "tsc",
14 "clean": "rm -rf dist",
15 "lint": "npm-run-all lint:*",
16 "lint:tsc": "tsc --noEmit",
17 "lint:js": "eslint . --cache",
18 "test": "npm-run-all lint clean build test:unit",
19 "test:unit": "mocha tests/unit-test.js -r ts-node/register",
20 "test:debugger": "mocha --inspect-brk tests/unit-test.js -r ts-node/register"
21 },
22 "repository": {
23 "type": "git",
24 "url": "https://github.com/SparshithNR/fs-merger.git"
25 },
26 "devDependencies": {
27 "@types/node": "^12.11.5",
28 "@typescript-eslint/eslint-plugin": "^4.22.0",
29 "@typescript-eslint/parser": "^4.22.0",
30 "broccoli-source": "^3.0.0",
31 "chai": "^4.2.0",
32 "eslint": "^7.25.0",
33 "eslint-config-prettier": "^8.3.0",
34 "eslint-plugin-node": "^11.1.0",
35 "eslint-plugin-prettier": "^3.4.0",
36 "fixturify": "^1.2.0",
37 "mocha": "^6.1.4",
38 "npm-run-all": "^4.1.5",
39 "prettier": "^2.2.1",
40 "rimraf": "^2.6.3",
41 "ts-node": "^8.4.1",
42 "typescript": "^3.6.2"
43 },
44 "dependencies": {
45 "broccoli-node-api": "^1.7.0",
46 "broccoli-node-info": "^2.1.0",
47 "fs-extra": "^8.0.1",
48 "fs-tree-diff": "^2.0.1",
49 "walk-sync": "^2.2.0"
50 }
51}