-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
45 lines (45 loc) · 1.18 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
{
"name": "dev-container",
"version": "1.0.0",
"private": true,
"description": "Action to help build/lint/publish self-authored dev container assets",
"main": "dist/index.js",
"scripts": {
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"build": "ncc build ./src/main.ts",
"test": "jest",
"fetch-schemas": "wget https://raw.githubusercontent.com/devcontainers/spec/main/schemas/devContainerFeature.schema.json -O src/schemas/devContainerFeature.schema.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devcontainers/action"
},
"keywords": [
"actions",
"node",
"setup",
"devcontainer",
"devcontainers",
"dev container"
],
"author": "GitHub",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.1.1",
"ajv": "^8.11.2",
"json5": "^2.2.3"
},
"devDependencies": {
"@types/ajv": "^1.0.0",
"@types/node": "^18.11.18",
"@vercel/ncc": "^0.34.0",
"eslint": "^8.32.0",
"jest": "^28.1.3",
"prettier": "2.8.3",
"ts-jest": "^28.0.8",
"typescript": "^4.9.4"
}
}