File size: 1,104 Bytes
f56a29b | 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 | {
"name": "@gulp-sourcemaps/identity-map",
"version": "2.0.1",
"description": "Gulp plugin for generating an identity sourcemap for a file.",
"author": "Gulp-sourcemaps Team",
"contributors": [
"Blaine Bublitz <blaine.bublitz@gmail.com>"
],
"repository": "gulp-sourcemaps/identity-map",
"license": "MIT",
"engines": {
"node": ">= 0.10"
},
"main": "index.js",
"files": [
"LICENSE",
"index.js",
"lib"
],
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "nyc mocha --async-only",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"dependencies": {
"acorn": "^6.4.1",
"normalize-path": "^3.0.0",
"postcss": "^7.0.16",
"source-map": "^0.6.0",
"through2": "^3.0.1"
},
"devDependencies": {
"coveralls": "^3.0.3",
"eslint": "^5.16.0",
"eslint-config-gulp": "^3.0.1",
"expect": "^1.19.0",
"mississippi": "^4.0.0",
"mocha": "^6.1.4",
"nyc": "^14.1.0",
"vinyl": "^2.2.0"
},
"keywords": [
"sourcemap",
"identity",
"generate",
"stream"
]
}
|