This repository was archived by the owner on Sep 30, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 1.83 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
{
"name": "tsproject",
"version": "4.0.0",
"author": "Todd Thomson <todd.thomson@me.com>",
"description": "Typescript minifier and modular typescript bundle optimizer for gulp (Ts Vinyl Adapter).",
"license": "MIT",
"main": "./lib/TsProject.js",
"types": "./lib/TsProject.d.ts",
"typings": "./lib/TsProject.d.ts",
"engines": {
"node": ">= 14.0.0"
},
"dependencies": {
"@types/glob": "^7.1.3",
"@types/lodash": "^4.14.165",
"@types/node": "^14.14.7",
"@types/prettier": "^2.1.5",
"@types/vinyl": "^2.0.4",
"chalk": "4.1.0",
"glob": "^7.1.6",
"lodash": "^4.17.20",
"prettier": "^2.1.2",
"readable-stream": "^3.6.0",
"typescript": "^4.0.5",
"vinyl": "^2.2.1"
},
"devDependencies": {
"@types/chai": "4.2.14",
"@types/mocha": "8.0.3",
"chai": "^4.2.0",
"del": "^6.0.0",
"gulp": "^4.0.2",
"gulp-hub": "^4.2.0",
"gulp-mocha": "^7.0.2",
"mocha": "^8.2.0",
"tsconfig-paths": "^3.9.0",
"tsproject": "^4.0.0",
"vinyl-paths": "^3.0.1"
},
"keywords": [
"typescript",
"bundle",
"bundling",
"minifier",
"minify",
"minification",
"compiler",
"cache optimized compiler",
"incremental build",
"d.ts",
"declaration",
"definitions",
"ES6 external modules",
"gulp",
"library",
"modular typescript",
"module bundles",
"optimizer",
"project",
"transpiler",
"tsconfig.json",
"typescript bundles",
"vinyl adapter"
],
"homepage": "https://github.com/toddthomson/tsproject",
"repository": {
"type": "git",
"url": "https://github.com/toddthomson/tsproject.git"
},
"bugs": "https://github.com/toddthomson/tsproject/issues",
"scripts": {
"build": "tsc --build ./src && gulp build",
"clean": "tsc --build ./src --clean && gulp clean",
"test": "mocha"
}
}