UNPKG

gulp-transform

Version:

A Gulp plugin for applying custom transformations to the contents of files

64 lines (63 loc) 1.8 kB
{ "name": "gulp-transform", "version": "3.0.5", "description": "A Gulp plugin for applying custom transformations to the contents of files", "main": "./lib/index.js", "types": "./lib/index.d.ts", "scripts": { "build": "npm run clean && tsc -p tsconfig.build.json", "clean": "rimraf .nyc_output coverage lib", "test:lint": "tslint \"src/**/*.ts\" \"spec/**/*.ts\"", "test:unit": "nyc _mocha --opts mocha.opts", "test": "npm run test:lint && npm run test:unit", "report": "rimraf coverage && nyc --reporter=html _mocha --opts mocha.opts && open coverage/index.html", "coverage": "nyc report --reporter=text-lcov | coveralls" }, "engines": { "node": ">=4" }, "repository": { "type": "git", "url": "git+https://github.com/mcmath/gulp-transform.git" }, "keywords": [ "gulpplugin", "gulp", "transform", "replace", "map", "typescript" ], "author": "Akim McMath <akim.elijah.mcmath@gmail.com>", "license": "MIT", "bugs": { "url": "https://github.com/mcmath/gulp-transform/issues" }, "homepage": "https://github.com/mcmath/gulp-transform#readme", "dependencies": { "@types/node": "*", "@types/gulp-util": "*", "gulp-util": "^3.0.8", "tslib": "^1.7.1" }, "devDependencies": { "@types/chai": "^4.0.1", "@types/chai-as-promised": "0.0.31", "@types/lodash": "^4.14.71", "@types/mocha": "^2.2.41", "@types/sinon": "^2.3.3", "@types/sinon-chai": "^2.7.28", "chai": "^4.1.0", "chai-as-promised": "^7.1.1", "coveralls": "^2.13.1", "lodash": "^4.17.4", "mocha": "^3.4.2", "nyc": "^11.1.0", "rimraf": "^2.6.1", "sinon": "^2.4.1", "sinon-chai": "^2.12.0", "ts-node": "^3.3.0", "tslint": "^5.5.0", "typescript": "^2.4.2" } }