-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.41 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
{
"name": "gulp-map-transform",
"version": "0.0.4",
"description": "A gulp plugin for transforming file references inside a file with a different stream",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && tsc",
"lint": "tslint \"src/**/*.ts\" \"tests/**/*.ts\"",
"jest": "jest --config jest.config.json",
"test": "npm run lint && npm run jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davideperozzi/gulp-map-transform.git"
},
"keywords": [
"gulp",
"transform",
"source",
"file",
"stream",
"content",
"regex",
"replace"
],
"author": "Davide Perozzi",
"license": "MIT",
"bugs": {
"url": "https://github.com/davideperozzi/gulp-map-transform/issues"
},
"homepage": "https://github.com/davideperozzi/gulp-map-transform#readme",
"dependencies": {
"gulp-flatmap": "^1.0.2",
"plugin-error": "^1.0.1",
"through2": "^3.0.1",
"tslib": "^1.10.0"
},
"devDependencies": {
"@types/gulp": "^4.0.6",
"@types/jest": "^24.0.15",
"@types/node": "^12.0.12",
"@types/rimraf": "^2.0.2",
"@types/through2": "^2.0.34",
"@types/vinyl": "^2.0.3",
"gulp": "^4.0.2",
"jest": "^24.8.0",
"rimraf": "^2.6.3",
"ts-jest": "^24.0.2",
"tslint": "^5.18.0",
"typescript": "^3.5.2"
}
}