-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 898 Bytes
/
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
{
"name": "atom-alloy",
"main": "./lib/atom-alloy",
"version": "0.3.0",
"description": "Alloy Analyzer and alloy language support for Atom editor.",
"consumedServices": {
"status-bar": {
"versions": {
"^1.0.0": "consumeStatusBar"
}
}
},
"keywords": [
"alloy"
],
"activationCommands": {
"atom-workspace": [
"atom-alloy:compile",
"atom-alloy:execute",
"atom-alloy:execute-all",
"atom-alloy:visualize",
"atom-alloy:visualize-all"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/HiroakiMikami/atom-alloy.git"
},
"license": "MIT",
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/HiroakiMikami/atom-alloy/issues"
},
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"dependencies": {
"java": ">=0.6.0",
"atom-space-pen-views": "^2.0.3"
}
}