forked from pvdlg/ncat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
124 lines (124 loc) · 2.5 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"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": {
"babel": {
"testOptions": {
"babelrc": false
}
}
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": "6"
}
}
]
]
},
"bin": {
"ncat": "./bin/ncat.js"
},
"bugs": {
"url": "https://github.com/pvdlg/ncat/issues"
},
"dependencies": {
"concat-with-sourcemaps": "^1.0.4",
"fs-extra": "^7.0.0",
"get-stdin": "^7.0.0",
"globby": "^8.0.0",
"pify": "^4.0.0",
"read-pkg-up": "^4.0.0",
"source-map-resolve": "^0.5.0",
"source-map-url": "^0.4.0",
"unixify": "^1.0.0",
"yargonaut": "^1.1.2",
"yargs": "^13.1.0"
},
"devDependencies": {
"ava": "^1.0.1",
"babel-cli": "^6.24.1",
"babel-preset-env": "^1.6.0",
"chalk": "^2.0.1",
"codecov": "^3.0.0",
"conventional-changelog-metahub": "^2.0.1",
"execa": "^1.0.0",
"nyc": "^13.1.0",
"randomstring": "^1.1.5",
"rimraf": "^2.6.1",
"semantic-release": "^15.7.1",
"temp-dir": "^1.0.0",
"tempy": "^0.2.0",
"xo": "^0.23.0"
},
"engines": {
"node": ">=6"
},
"files": [
"lib",
"bin"
],
"homepage": "https://github.com/pvdlg/ncat#readme",
"keywords": [
"banner",
"cat",
"cli",
"concat",
"concatenate",
"concatenation",
"files",
"footer",
"header",
"sourcemap"
],
"license": "MIT",
"main": "lib/index.js",
"nyc": {
"include": [
"lib/**/*.js",
"bin/**/*"
],
"reporter": [
"html",
"json",
"text"
],
"all": true
},
"prettier": {
"printWidth": 120,
"trailingComma": "es5"
},
"publishConfig": {
"access": "public"
},
"release": {
"preset": "metahub",
"releaseRules": "conventional-changelog-metahub/release-rules"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pvdlg/ncat.git"
},
"scripts": {
"codecov": "codecov -f coverage/coverage-final.json",
"compile": "rimraf lib && babel src --source-maps --out-dir lib",
"lint": "xo",
"prepublishOnly": "npm run compile",
"pretest": "npm run compile && npm run lint",
"semantic-release": "semantic-release",
"test": "nyc ava -v"
},
"xo": {
"prettier": true,
"ignore": [
"test/fixtures/**"
]
}
}