-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
63 lines (63 loc) · 1.76 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
{
"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"
}
}