UNPKG

1.38 kBJSONView Raw
1{
2 "name": "globcat",
3 "version": "0.5.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": "globcat.js",
13 "scripts": {
14 "prelint": "echo '===== lint'",
15 "lint": "standard",
16 "pretest": "npm run lint && echo '===== test'",
17 "test": "tape 'test/**/*Test.js' | tap-spec",
18 "preversion": "npm test",
19 "postversion": "git push && git push --tags",
20 "prewatch": "npm install --silent",
21 "watch": "onchange globcat.js test/**/*Test.js lib/*.js func/*.js -i -w -- npm test"
22 },
23 "bin": {
24 "globcat": "bin/globcat.js"
25 },
26 "dependencies": {
27 "async": "^2.0.0-rc.3",
28 "combined-stream2": "^1.1.2",
29 "command-line-args": "^2.1.6",
30 "glob": "^7.0.3"
31 },
32 "devDependencies": {
33 "is-stream": "^1.1.0",
34 "onchange": "^2.4.0",
35 "standard": "^6.0.8",
36 "tap-spec": "^4.1.1",
37 "tape": "^4.5.1"
38 },
39 "bugs": {
40 "url": "https://github.com/smonn/globcat/issues"
41 },
42 "repository": {
43 "type": "git",
44 "url": "git+ssh://git@github.com/smonn/globcat.git"
45 },
46 "files": [
47 "bin/globcat.js",
48 "func",
49 "globcat.js"
50 ],
51 "homepage": "https://github.com/smonn/globcat#readme",
52 "author": "Simon Ingeson <simon.ingeson@gmail.com> (http://www.ingeson.se/)",
53 "license": "MIT"
54}