UNPKG

1.8 kBJSONView Raw
1{
2 "name": "gulp-transform",
3 "version": "3.0.5",
4 "description": "A Gulp plugin for applying custom transformations to the contents of files",
5 "main": "./lib/index.js",
6 "types": "./lib/index.d.ts",
7 "scripts": {
8 "build": "npm run clean && tsc -p tsconfig.build.json",
9 "clean": "rimraf .nyc_output coverage lib",
10 "test:lint": "tslint \"src/**/*.ts\" \"spec/**/*.ts\"",
11 "test:unit": "nyc _mocha --opts mocha.opts",
12 "test": "npm run test:lint && npm run test:unit",
13 "report": "rimraf coverage && nyc --reporter=html _mocha --opts mocha.opts && open coverage/index.html",
14 "coverage": "nyc report --reporter=text-lcov | coveralls"
15 },
16 "engines": {
17 "node": ">=4"
18 },
19 "repository": {
20 "type": "git",
21 "url": "git+https://github.com/mcmath/gulp-transform.git"
22 },
23 "keywords": [
24 "gulpplugin",
25 "gulp",
26 "transform",
27 "replace",
28 "map",
29 "typescript"
30 ],
31 "author": "Akim McMath <akim.elijah.mcmath@gmail.com>",
32 "license": "MIT",
33 "bugs": {
34 "url": "https://github.com/mcmath/gulp-transform/issues"
35 },
36 "homepage": "https://github.com/mcmath/gulp-transform#readme",
37 "dependencies": {
38 "@types/node": "*",
39 "@types/gulp-util": "*",
40 "gulp-util": "^3.0.8",
41 "tslib": "^1.7.1"
42 },
43 "devDependencies": {
44 "@types/chai": "^4.0.1",
45 "@types/chai-as-promised": "0.0.31",
46 "@types/lodash": "^4.14.71",
47 "@types/mocha": "^2.2.41",
48 "@types/sinon": "^2.3.3",
49 "@types/sinon-chai": "^2.7.28",
50 "chai": "^4.1.0",
51 "chai-as-promised": "^7.1.1",
52 "coveralls": "^2.13.1",
53 "lodash": "^4.17.4",
54 "mocha": "^3.4.2",
55 "nyc": "^11.1.0",
56 "rimraf": "^2.6.1",
57 "sinon": "^2.4.1",
58 "sinon-chai": "^2.12.0",
59 "ts-node": "^3.3.0",
60 "tslint": "^5.5.0",
61 "typescript": "^2.4.2"
62 }
63}