-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.19 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
{
"name": "ember-decorators",
"displayName": "ember-decorators",
"description": "Simplify usage of ember-decorators",
"homepage": "https://github.com/mfeckie/vscode-ember-decorators",
"repository": {
"type": "git",
"url": "https://github.com/mfeckie/vscode-ember-decorators.git"
},
"version": "0.1.0",
"author": {
"name": "Martin Feckie",
"url": "https://mfeckie.github.io"
},
"publisher": "mfeckies",
"engines": {
"vscode": "^1.30.2"
},
"categories": [
"Snippets"
],
"activationEvents": [
"onLanguage:typescript"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "decorators.convertAttrs",
"title": "Convert attr to @attr",
"category": "Ember Decorators"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "3.2.4",
"vscode": "^1.1.6",
"tslint": "^5.8.0",
"@types/node": "10.12.18",
"@types/mocha": "5.2.5"
}
}