forked from devcontainers/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.96 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
103
104
105
106
107
108
109
110
111
{
"name": "@devcontainers/cli",
"description": "Dev Containers CLI",
"version": "0.40.0",
"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.17.0"
},
"scripts": {
"compile": "npm-run-all clean-dist definitions compile-dev",
"watch": "npm-run-all clean-dist definitions compile-watch",
"package": "npm-run-all clean-dist definitions compile-prod store-packagejson patch-packagejson npm-pack restore-packagejson",
"store-packagejson": "copyfiles package.json build-tmp/",
"patch-packagejson": "node build/patch-packagejson.js",
"restore-packagejson": "copyfiles --up 1 build-tmp/package.json .",
"type-check": "npm-run-all clean-built tsc-b",
"type-check-watch": "npm-run-all clean-built tsc-b-w",
"compile-prod": "node esbuild.js --production",
"compile-dev": "node esbuild.js",
"compile-watch": "node esbuild.js --watch",
"tsc-b": "tsc -b",
"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 \"node_modules/vscode-dev-containers/container-features/{devcontainer-features.json,feature-scripts.env,fish-debian.sh,homebrew-debian.sh,install.sh}\" dist",
"npm-pack": "npm pack",
"clean": "npm-run-all clean-dist clean-built",
"clean-dist": "rimraf dist",
"clean-built": "rimraf built",
"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/spec-node/devContainersSpecCLI.js",
"dist/node_modules/vscode-dev-containers",
"package.json",
"scripts/updateUID.Dockerfile"
],
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/chalk": "^2.2.0",
"@types/follow-redirects": "^1.14.1",
"@types/js-yaml": "^4.0.5",
"@types/mocha": "^10.0.1",
"@types/ncp": "^2.0.5",
"@types/node": "^18.15.3",
"@types/pull-stream": "^3.6.2",
"@types/recursive-readdir": "^2.2.1",
"@types/semver": "^7.3.13",
"@types/shell-quote": "^1.7.1",
"@types/tar": "^6.1.4",
"@types/yargs": "^17.0.22",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/experimental-utils": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"chai": "^4.3.7",
"copyfiles": "^2.4.1",
"esbuild": "^0.17.12",
"eslint": "^8.36.0",
"event-stream": "^4.0.1",
"gulp-eslint": "^6.0.0",
"gulp-filter": "^7.0.0",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"p-all": "^4.0.0",
"rimraf": "^4.4.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.2",
"typescript-formatter": "^7.2.2",
"vinyl": "^3.0.0",
"vinyl-fs": "^3.0.3"
},
"dependencies": {
"chalk": "^5.2.0",
"follow-redirects": "^1.15.2",
"js-yaml": "^4.1.0",
"jsonc-parser": "^3.2.0",
"ncp": "^2.0.0",
"node-pty": "^0.10.1",
"proxy-agent": "^5.0.0",
"pull-stream": "^3.7.0",
"recursive-readdir": "^2.2.3",
"semver": "^7.3.8",
"shell-quote": "^1.8.0",
"stream-to-pull-stream": "^1.7.3",
"tar": "^6.1.13",
"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.7",
"yargs": "~17.7.1"
}
}