-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1017 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 1017 Bytes
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
{
"name": "automaton-schema-intellisense",
"displayName": "Automaton Schema Intellisense",
"description": "Automaton JSON schema validator",
"version": "1.0.0",
"publisher": "abhivijay96",
"engines": {
"vscode": "^1.21.0"
},
"categories": [
"Other"
],
"activationEvents": [],
"main": "./extension",
"contributes": {
"jsonValidation": [
{
"fileMatch": "*.atmt.json",
"url": "./schema.json"
}
]
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^2.6.1",
"vscode": "^1.1.6",
"eslint": "^4.11.0",
"@types/node": "^7.0.43",
"@types/mocha": "^2.2.42"
},
"icon": "automaton_icon.png",
"repository": {
"type": "git",
"url": "https://github.com/abhivijay96/automaton-vscode"
}
}