-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 817 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 817 Bytes
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
{
"name": "gulp-concat-sourcemap",
"version": "1.3.1",
"description": "Concatenate files and generate a source map file",
"main": "index.js",
"scripts": {
"test": "mocha --reporter spec"
},
"repository": {
"type": "git",
"url": "git://github.com/mikach/gulp-concat-sourcemap.git"
},
"keywords": [
"gulpplugin",
"gulp",
"concat",
"sourcemap"
],
"author": {
"name": "Michael",
"email": "mikach27@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mikach/gulp-concat-sourcemap/issues"
},
"homepage": "https://github.com/mikach/gulp-concat-sourcemap",
"dependencies": {
"through": "^2.3.4",
"gulp-util": "^2.2.14",
"source-map": "0.1.33"
},
"devDependencies": {
"mocha": "^1.18.2",
"chai": "^1.9.0"
}
}