-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
101 lines (101 loc) · 1.99 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "ncat",
"description": "Node CLI to concatenate multiple files, with their sourcemaps and optionally stdin, a banner and a footer",
"version": "0.0.0-development",
"author": "Pierre Vanduynslager",
"ava": {
"helpers": [
"test/helpers/**/*"
],
"files": [
"test/*.test.js"
]
},
"bin": {
"ncat": "./bin/ncat.js"
},
"bugs": {
"url": "https://github.com/pvdlg/ncat/issues"
},
"dependencies": {
"concat-with-sourcemaps": "^1.0.4",
"fs-extra": "^9.0.0",
"get-stdin": "^7.0.0",
"globby": "^10.0.1",
"pify": "^5.0.0",
"read-pkg-up": "^7.0.0",
"source-map-resolve": "^0.5.0",
"source-map-url": "^0.4.0",
"unixify": "^1.0.0",
"yargonaut": "^1.1.2",
"yargs": "^15.0.1"
},
"devDependencies": {
"ava": "^2.4.0",
"chalk": "^3.0.0",
"codecov": "^3.0.0",
"execa": "^4.0.0",
"nyc": "^15.0.0",
"randomstring": "^1.1.5",
"semantic-release": "^17.0.0",
"temp-dir": "^2.0.0",
"tempy": "^0.5.0",
"xo": "^0.27.0"
},
"engines": {
"node": ">=10.13"
},
"files": [
"index.js",
"bin"
],
"homepage": "https://github.com/pvdlg/ncat#readme",
"keywords": [
"banner",
"cat",
"cli",
"concat",
"concatenate",
"concatenation",
"files",
"footer",
"header",
"sourcemap"
],
"license": "MIT",
"main": "index.js",
"nyc": {
"include": [
"index.js",
"bin/**/*"
],
"reporter": [
"html",
"json",
"text"
],
"all": true
},
"prettier": {
"printWidth": 120,
"trailingComma": "es5"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pvdlg/ncat.git"
},
"scripts": {
"codecov": "codecov -f coverage/coverage-final.json",
"lint": "xo",
"pretest": "npm run lint",
"semantic-release": "semantic-release",
"test": "nyc ava -v"
},
"xo": {
"prettier": true,
"ignore": ["test/fixtures/**"]
}
}