-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathpackage.json
61 lines (61 loc) · 2.28 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
{
"name": "Angular-BeastCode",
"publisher": "Mikael",
"displayName": "Angular 17 Snippets - TypeScript, Html, Angular Material, ngRx, RxJS & Flex Layout",
"description": "258 Angular Snippets (TypeScript, Html, Angular Material, Flex Layout, ngRx, RxJS, PWA & Testing)",
"icon": "images/Angular17.png",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/BeastCode/VSCode-Angular-TypeScript-Snippets.git"
},
"bugs": {
"url": "https://github.com/BeastCode/VSCode-Angular-TypeScript-Snippets/issues"
},
"homepage": "https://github.com/BeastCode/VSCode-Angular-TypeScript-Snippets#readme",
"version": "17.0.3",
"engines": {
"vscode": "^1.30.0"
},
"categories": [
"Snippets"
],
"keywords": [
"Angular",
"TypeScript",
"HTML",
"Angular Material",
"Angular 17"
],
"contributes": {
"snippets": [
{
"language": "html",
"path": "./snippets/html.json"
},
{
"language": "typescript",
"path": "./snippets/typescript.json"
},
{
"language": "json",
"path": "./snippets/json.json"
}
]
},
"scripts": {
"publish": "npm version patch; vsce publish",
"build": "npm run build_readme; npm run dups; npm run count; npm run countTS; npm run countHTML; npm run countJS; npm run countJson",
"build_readme": "cat src/README_top.md > README.md; npm run generate_readme_table; cat src/README_bottom.md >> README.md;",
"generate_readme_table": "cat src/snippets.json | grep 'prefix\\|description' | sed -e \"s/description//\" | sed -e \"s/prefix//\" | sed -e 's/ \"\": \"//' | sed -e 's/\",//' | sed -e 'N;s/\\n/ | /' | sed -e 's/$/ |/g' | sed -e 's/^/| /' | sort >> README.md",
"dup_snippet": "cat src/snippets.json | grep '\": {' | sort | uniq -d",
"dup_name": "cat src/snippets.json | grep 'prefix' | sort | uniq -d",
"dups": "npm run dup_snippet; npm run dup_name",
"count": "cat src/snippets.json | grep 'prefix' | wc -l",
"countTS": "cat snippets/typescript.json | grep 'prefix' | wc",
"countHTML": "cat snippets/html.json | grep 'prefix' | wc",
"countJS": "cat snippets/javascript.json | grep 'prefix' | wc",
"countJson": "cat snippets/json.json | grep 'prefix' | wc",
"patch": "npm version patch"
}
}