forked from devcontainers/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 3.11 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 3.11 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
{
"name": "devcontainer-rs",
"description": "Compatibility tooling for the native devcontainer Rust CLI",
"version": "0.0.1",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/jooh/devcontainer-rs.git"
},
"bugs": {
"url": "https://github.com/jooh/devcontainer-rs/issues"
},
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"test": "npm run check",
"check": "node build/check-upstream-submodule.js && node build/check-upstream-compatibility.js && node build/generate-command-matrix.js --check && node build/generate-cli-reference.js --check && node build/generate-parity-inventory.js --check && node build/generate-cli-metadata.js --check && node build/generate-compatibility-dashboard.js --check && node build/check-upstream-test-coverage.js && node build/check-spec-drift.js && node build/check-parity-harness.js && node build/check-native-only.js && node build/check-no-node-runtime.js && node --test build/test-npm-wrapper.js && node --test build/test-publish-npm-packages.js && node --test build/test-npm-package-smoke.js && node build/check-npm-packages.js && node build/check-homebrew-distribution.js && node build/check-npm-publish-workflow.js && node build/check-devcontainer-config.js",
"install-git-hooks": "./scripts/install-git-hooks.sh",
"generate-command-matrix": "node build/generate-command-matrix.js",
"generate-cli-reference": "node build/generate-cli-reference.js",
"generate-parity-inventory": "node build/generate-parity-inventory.js",
"generate-cli-metadata": "node build/generate-cli-metadata.js",
"generate-compatibility-dashboard": "node build/generate-compatibility-dashboard.js",
"generate-upstream-test-coverage": "node build/generate-upstream-test-coverage.js",
"prepare-npm-packages": "node build/prepare-npm-packages.js",
"check-command-matrix": "node build/generate-command-matrix.js --check",
"check-cli-reference": "node build/generate-cli-reference.js --check",
"check-parity-inventory": "node build/generate-parity-inventory.js --check",
"check-cli-metadata": "node build/generate-cli-metadata.js --check",
"check-compatibility-dashboard": "node build/generate-compatibility-dashboard.js --check",
"check-upstream-test-coverage": "node build/check-upstream-test-coverage.js",
"check-devcontainer-config": "node build/check-devcontainer-config.js",
"check-parity-harness": "node build/check-parity-harness.js",
"check-no-node-runtime": "node build/check-no-node-runtime.js",
"check-npm-wrapper": "node --test build/test-npm-wrapper.js",
"check-publish-npm-packages": "node --test build/test-publish-npm-packages.js",
"check-npm-packages": "node --test build/test-npm-package-smoke.js && node build/check-npm-packages.js",
"check-spec-drift": "node build/check-spec-drift.js",
"check-native-only": "node build/check-native-only.js",
"check-upstream-submodule": "node build/check-upstream-submodule.js",
"check-upstream-compatibility": "node build/check-upstream-compatibility.js",
"check-npm-publish-workflow": "node build/check-npm-publish-workflow.js",
"check-homebrew-distribution": "node build/check-homebrew-distribution.js"
}
}