UNPKG

1.77 kBJSONView Raw
1{
2 "name": "globcat",
3 "version": "1.2.1",
4 "description": "Concatenate files from command line with glob pattern.",
5 "keywords": [
6 "glob",
7 "wildcard",
8 "file pattern",
9 "concatenate",
10 "command line"
11 ],
12 "main": "dist/globcat.js",
13 "scripts": {
14 "prelint": "echo ===== lint",
15 "lint": "eslint . --fix",
16 "prebuild": "npm run lint && echo ===== build",
17 "build": "babel src --out-dir dist",
18 "pretest": "npm run build && echo ===== test",
19 "test": "tap \"test/**/*Test.js\"",
20 "preversion": "npm test",
21 "postversion": "git push && git push --tags",
22 "prewatch": "npm install --silent",
23 "watch": "onchange \"test/**/*Test.js\" \"src/**/*.js\" -i -v -w -- npm test"
24 },
25 "bin": {
26 "globcat": "dist/bin/globcat.js"
27 },
28 "dependencies": {
29 "async": "^3.1.1",
30 "combined-stream2": "^1.1.2",
31 "command-line-args": "^5.1.1",
32 "command-line-usage": "^6.1.0",
33 "glob": "^7.1.6"
34 },
35 "devDependencies": {
36 "@babel/cli": "^7.8.4",
37 "@babel/core": "^7.8.4",
38 "@babel/preset-env": "^7.8.4",
39 "babel-eslint": "^10.0.3",
40 "eslint": "^6.8.0",
41 "eslint-config-prettier": "^6.10.0",
42 "eslint-plugin-prettier": "^3.1.2",
43 "is-stream": "^2.0.0",
44 "onchange": "^6.1.0",
45 "prettier": "^1.19.1",
46 "tap": "^14.10.6"
47 },
48 "bugs": {
49 "url": "https://github.com/smonn/globcat/issues"
50 },
51 "repository": {
52 "type": "git",
53 "url": "git+ssh://git@github.com/smonn/globcat.git"
54 },
55 "files": [
56 "dist"
57 ],
58 "standard": {
59 "ignore": [
60 "dist"
61 ]
62 },
63 "engines": {
64 "node": ">=8",
65 "npm": ">=6"
66 },
67 "homepage": "https://github.com/smonn/globcat#readme",
68 "author": "Simon Ingeson <smonnsource@gmail.com> (https://www.smonn.se/)",
69 "license": "MIT"
70}