-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.29 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.29 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@gulp-util/sourcemaps",
"version": "0.0.3",
"license": "GPL-3.0",
"title": "Gulp Sourcemap",
"repository": {
"type": "git",
"url": "https://github.com/gulp-util/sourcemaps"
},
"bugs": {
"url": "https://github.com/gulp-util/sourcemaps/issues"
},
"typings": "types/index.d.ts",
"main": "lib/index.js",
"contributors": [
"Florian Reiterer <me@florianreiterer.com>",
"nmccready <nemtcan@gmail.com>",
"Blaine Bublitz <blaine.bublitz@gmail.com>",
"PWall <git@pwall.me>"
],
"dependencies": {
"@gulp-sourcemaps/identity-map": "^2.0.1",
"@gulp-sourcemaps/map-sources": "^1.0.0",
"@types/convert-source-map": "^1.0.0",
"@types/css-tree": "^2.3.1",
"@types/detect-newline": "^2.0.0",
"@types/graceful-fs": "^4.0.0",
"@types/strip-bom-string": "^1.0.0",
"@types/through2": "^2.0.0",
"@types/vinyl": "^2.0.7",
"acorn": "^6.4.1",
"convert-source-map": "^1.0.0",
"css-tree": "^2.2.1",
"debug-fabulous": "^1.0.0",
"detect-newline": "^2.0.0",
"graceful-fs": "^4.0.0",
"source-map": "^0.7.0",
"strip-bom-string": "^1.0.0",
"through2": "^2.0.0"
},
"devDependencies": {
"@types/expect": "^1.20.2",
"@types/from2": "^2.1.0",
"@types/gulp": "^4.0.0",
"@types/gulp-concat": "^0.0.34",
"@types/gulp-if": "^3.0.1",
"@types/gulp-less": "^0.0.33",
"@types/gulp-load-plugins": "^0.0.34",
"@types/mocha": "^10.0.1",
"@types/node": "^20.3.0",
"@types/rimraf": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"bootstrap": "^3.4.1",
"eslint": "^8.41.0",
"expect": "^1.20.2",
"from2": "^2.1.0",
"gulp": "^4.0.0",
"gulp-concat": "^2.6.1",
"gulp-if": "^2.0.2",
"gulp-less": "^3.0.0",
"gulp-load-plugins": "^1.5.0",
"hook-std": "~2.0.0",
"mocha": "^10.2.0",
"rimraf": "^2.6.3",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"vinyl": "^2.2.0"
},
"scripts": {
"lint": "eslint .",
"dev": "tsc --watch",
"build": "tsc",
"build:transpile": "tsc || true",
"build:test": "tsc -p ./test || true",
"pretest": "pnpm run /build:.*/",
"test": "mocha",
"test:ts-node": "mocha -r ts-node/register",
"test:transpile": "mocha -r ts-node/register/transpile-only"
},
"files": [
"lib",
"types",
"LICENSE",
"LICENSE.ISC"
],
"keywords": [
"gulp"
],
"packageManager": "pnpm@7.27.0"
}