-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
88 lines (88 loc) · 1.78 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
{
"name": "angular-ngrx",
"displayName": "Angular Ngrx",
"description": "Quickly scaffold ngrx file templates + snippets",
"version": "0.0.1",
"publisher": "loiane",
"license": "MIT",
"icon": "images/angular-ngrx-logo.png",
"engines": {
"vscode": "^1.12.0"
},
"repository": {
"type": "git",
"url": "https://github.com/loiane/vscode-angular-ngrx"
},
"bugs": {
"url": "https://github.com/loiane/vscode-angular-ngrx/issues"
},
"keywords": [
"Angular",
"Angular 2",
"Angular 4",
"ngrx",
"redux",
"TypeScript",
"Templates"
],
"categories": [
"Other",
"Languages",
"Snippets"
],
"activationEvents": [
"*"
],
"main": "./out/src/extension",
"preview": true,
"contributes": {
"commands": [
{
"command": "extension.addNgRxFeatureStore",
"title": "Generate ngrx feature store"
},
{
"command": "extension.addNgRxUtil",
"title": "Generate ngrx util.ts"
}
],
"menus": {
"explorer/context": [
{
"when": "",
"command": "extension.addNgRxFeatureStore",
"group": "AngularNgRx"
},
{
"when": "",
"command": "extension.addNgRxUtil",
"group": "AngularNgRx"
}
]
},
"snippets": [
{
"language": "typescript",
"path": "./src/snippets/ngrx/util.json"
}
]
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test",
"lint": "tslint --project tsconfig.json",
"analysis": "bithound check [email protected]:loiane/vscode-angular-ngrx.git"
},
"devDependencies": {
"@types/mocha": "^2.2.41",
"@types/node": "^8.0.13",
"bithound": "^1.7.0",
"codecov": "^3.0.0",
"mocha": "^4.0.0",
"tslint": "^5.5.0",
"typescript": "^2.4.1",
"vscode": "^1.1.2"
}
}