-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
45 lines (45 loc) · 1.6 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": "@github/template-parts",
"version": "0.5.4",
"description": "An implementation of the TemplateInstance proposal (https://github.com/w3c/webcomponents/blob/159b1600bab02fe9cd794825440a98537d53b389/proposals/Template-Instantiation.md)",
"homepage": "https://github.com/w3c/webcomponents/blob/159b1600bab02fe9cd794825440a98537d53b389/proposals/Template-Instantiation.md",
"bugs": {
"url": "https://github.com/github/template-parts/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/github/template-parts.git"
},
"license": "MIT",
"author": "GitHub Inc.",
"type": "module",
"main": "lib/index.js",
"module": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"build": "tsc --build tsconfig.build.json",
"clean": "tsc --build --clean tsconfig.build.json",
"lint": "tsc && eslint . --ignore-path .gitignore",
"prepack": "npm run build",
"postpublish": "npm publish --ignore-scripts --@github:registry='https://npm.pkg.github.com'",
"pretest": "npm run lint",
"test": "wtr --coverage",
"test:watch": "concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"wtr --watch\""
},
"prettier": "@github/prettier-config",
"devDependencies": {
"@github/prettier-config": "^0.0.6",
"@open-wc/testing": "^4.0.0",
"@types/mocha": "^10.0.9",
"@types/node": "^22.8.7",
"@web/dev-server-esbuild": "^1.0.2",
"@web/test-runner": "^0.19.0",
"concurrently": "^9.0.1",
"eslint": "^8.57.1",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-github": "^5.0.2",
"typescript": "^5.6.3"
}
}