forked from devcontainers/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 3.25 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
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
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@devcontainers/cli",
"description": "Dev Containers CLI",
"version": "0.23.1-rkomara",
"bin": {
"devcontainer": "devcontainer.js"
},
"author": "Microsoft Corporation",
"repository": {
"type": "git",
"url": "https://github.com/devcontainers/cli.git"
},
"bugs": {
"url": "https://github.com/devcontainers/cli/issues"
},
"license": "SEE LICENSE IN LICENSE.txt",
"engines": {
"node": ">=14.14.0"
},
"scripts": {
"compile": "npm-run-all clean definitions tsc-b",
"tsc-b": "tsc -b",
"watch": "npm-run-all clean definitions tsc-b-w",
"tsc-b-w": "tsc -b -w",
"precommit": "node build/hygiene.js",
"definitions": "npm-run-all definitions-clean definitions-copy",
"lint": "eslint -c .eslintrc.js --rulesdir ./build/eslint --max-warnings 0 --ext .ts ./src",
"definitions-clean": "rimraf dist/node_modules/vscode-dev-containers",
"definitions-copy": "copyfiles --all \"node_modules/vscode-dev-containers/**/*\" dist",
"package": "npm-run-all compile npm-pack",
"bundle": "npm-run-all clean definitions esbuild npm-pack",
"esbuild": "node esbuild.js --production",
"npm-pack": "npm pack",
"clean": "rimraf dist",
"test": "env TS_NODE_PROJECT=src/test/tsconfig.json mocha -r ts-node/register --exit src/test/*.test.ts",
"test-matrix": "env TS_NODE_PROJECT=src/test/tsconfig.json mocha -r ts-node/register --exit",
"test-container-features": "env TS_NODE_PROJECT=src/test/tsconfig.json mocha -r ts-node/register --exit src/test/container-features/*.test.ts",
"test-container-templates": "env TS_NODE_PROJECT=src/test/tsconfig.json mocha -r ts-node/register --exit src/test/container-templates/*.test.ts"
},
"files": [
"CHANGELOG.md",
"LICENSE.txt",
"README.md",
"ThirdPartyNotices.txt",
"devcontainer.js",
"dist",
"package.json",
"scripts/updateUID.Dockerfile"
],
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/chalk": "^2.2.0",
"@types/follow-redirects": "^1.13.1",
"@types/js-yaml": "^4.0.5",
"@types/mocha": "^9.1.0",
"@types/ncp": "^2.0.5",
"@types/node": "^16.11.7",
"@types/pull-stream": "^3.6.2",
"@types/recursive-readdir": "^2.2.1",
"@types/semver": "^7.3.9",
"@types/shell-quote": "^1.7.1",
"@types/tar": "^6.1.1",
"@types/yargs": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"chai": "^4.3.4",
"copyfiles": "^2.4.1",
"esbuild": "^0.13.14",
"eslint": "^7.32.0",
"event-stream": "^4.0.1",
"gulp-eslint": "^6.0.0",
"gulp-filter": "^7.0.0",
"mocha": "^9.2.1",
"npm-run-all": "^4.1.5",
"p-all": "^4.0.0",
"rimraf": "^3.0.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.5",
"typescript-formatter": "^7.2.2",
"vinyl": "^2.2.1",
"vinyl-fs": "^3.0.3"
},
"dependencies": {
"chalk": "^4",
"follow-redirects": "^1.14.8",
"js-yaml": "^4.1.0",
"jsonc-parser": "^3.0.0",
"ncp": "^2.0.0",
"node-pty": "^0.10.1",
"proxy-agent": "^5.0.0",
"pull-stream": "^3.6.14",
"recursive-readdir": "^2.2.2",
"semver": "^7.3.5",
"shell-quote": "^1.7.3",
"stream-to-pull-stream": "^1.7.3",
"tar": "^6.1.11",
"vscode-dev-containers": "https://github.com/microsoft/vscode-dev-containers/releases/download/v0.245.2/vscode-dev-containers-0.245.2.tgz",
"vscode-uri": "^3.0.3",
"yargs": "~17.0.1",
"yarn": "^1.22.19"
}
}