UNPKG

1.8 kBJSONView Raw
1{
2 "name": "globcat",
3 "version": "1.1.0",
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 "precoverage": "npm run build && echo ===== coverage",
15 "coverage": "istanbul cover tape -- \"test/**/*Test.js\"",
16 "prelint": "echo ===== lint",
17 "lint": "standard",
18 "prebuild": "npm run lint && echo ===== build",
19 "build": "babel src --out-dir dist",
20 "pretest": "npm run build && echo ===== test",
21 "test": "tape \"test/**/*Test.js\" | tap-spec",
22 "preversion": "npm test",
23 "postversion": "git push && git push --tags",
24 "prewatch": "npm install --silent",
25 "watch": "onchange \"test/**/*Test.js\" \"src/**/*.js\" -i -v -w -- npm test"
26 },
27 "bin": {
28 "globcat": "dist/bin/globcat.js"
29 },
30 "dependencies": {
31 "async": "^2.6.0",
32 "combined-stream2": "^1.1.2",
33 "command-line-args": "^5.0.2",
34 "command-line-usage": "^5.0.5",
35 "glob": "^7.1.2"
36 },
37 "devDependencies": {
38 "babel-cli": "^6.26.0",
39 "babel-preset-env": "^1.7.0",
40 "is-stream": "^1.1.0",
41 "istanbul": "^0.4.5",
42 "onchange": "^4.0.0",
43 "standard": "^11.0.1",
44 "tap-spec": "^4.1.1",
45 "tape": "^4.9.0"
46 },
47 "bugs": {
48 "url": "https://github.com/smonn/globcat/issues"
49 },
50 "repository": {
51 "type": "git",
52 "url": "git+ssh://git@github.com/smonn/globcat.git"
53 },
54 "files": [
55 "dist"
56 ],
57 "standard": {
58 "ignore": [
59 "dist"
60 ]
61 },
62 "engines": {
63 "node": ">=6.14.2",
64 "npm": ">=3.10.10"
65 },
66 "homepage": "https://github.com/smonn/globcat#readme",
67 "author": "Simon Ingeson <smonnsource@gmail.com> (https://www.smonn.se/)",
68 "license": "MIT"
69}