forked from gulp-sourcemaps/gulp-sourcemaps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.67 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
{
"name": "gulp-sourcemaps",
"version": "2.5.1",
"description": "Source map support for Gulp.js",
"homepage": "http://github.com/floridoo/gulp-sourcemaps",
"repository": "git://github.com/floridoo/gulp-sourcemaps.git",
"main": "index.js",
"scripts": {
"lint": "jshint ./src/**/*.js test/*.js",
"test": "npm run lint && faucet test/*.js $@",
"tap": "tape test/*.js",
"cover": "istanbul cover --dir reports/coverage tape \"test/*.js\"",
"coveralls": "istanbul cover tape \"test/*.js\" --report lcovonly && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
"serve": "http-server",
"test:int": "rm -rf ./tmp && tape ./test/integration.js"
},
"keywords": [
"gulpplugin",
"gulp",
"source maps",
"sourcemaps"
],
"author": "Florian Reiterer <[email protected]>",
"license": "ISC",
"dependencies": {
"@gulp-sourcemaps/map-sources": "1.X",
"acorn": "4.X",
"convert-source-map": "1.X",
"css": "2.X",
"debug-fabulous": "0.0.X",
"detect-newline": "2.X",
"graceful-fs": "4.X",
"source-map": "0.X",
"strip-bom-string": "1.X",
"through2": "2.X",
"vinyl": "1.X"
},
"devDependencies": {
"bootstrap": "3.3.7",
"coveralls": "2.X",
"faucet": "0.0.X",
"gulp": "3.X",
"gulp-concat": "2.X",
"gulp-if": "2.0.2",
"gulp-less": "3.3.0",
"gulp-load-plugins": "1.X",
"hook-std": "0.2.X",
"http-server": "0.9.0",
"istanbul": "0.X",
"jshint": "2.X",
"lodash": "4.17.4",
"mississippi": "^1.3.0",
"object-assign": "^4.1.0",
"tape": "4.X",
"yargs": "6.6.0"
},
"files": [
"index.js",
"src"
],
"engines": {
"node": ">=4"
}
}