forked from prantlf/gulp-relative-sourcemaps-source
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 791 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 791 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
{
"name": "gulp-relative-sourcemaps-source",
"version": "0.1.1",
"description": "Converts paths to files with the sourcemaps content to be relative to the source file directory.",
"license": "MIT",
"repository": "prantlf/gulp-relative-sourcemaps-source",
"author": {
"name": "Ferdinand Prantl",
"email": "prantlf@gmail.com",
"url": "http://prantl.tk"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "./node_modules/.bin/eslint *.js && ./node_modules/.bin/mocha"
},
"files": [
"index.js"
],
"keywords": [
"gulpplugin",
"sourcemaps",
"relative",
"sources"
],
"dependencies": {
"gulp-util": "^3.0.6",
"through2": "^2.0.0"
},
"devDependencies": {
"eslint": "^1.10.3",
"mocha": "^2.3.4"
}
}