forked from TypeStrong/atom-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.49 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
{
"name": "atom-typescript",
"version": "7.0.2",
"main": "./dist/main/atomts",
"bin": {
"atbuild": "./dist/main/bin/atbuild"
},
"preferGlobal": "true",
"description": "The only TypeScript plugin you will ever need.",
"engines": {
"atom": ">=0.199.0 <2.0.0",
"node": "*"
},
"providedServices": {
"autocomplete.provider": {
"versions": {
"2.0.0": "provide"
}
},
"linter": {
"versions": {
"1.0.0": "provideLinter"
}
}
},
"consumedServices": {
"snippets": {
"versions": {
"0.1.0": "consumeSnippets"
}
}
},
"homepage": "http://atom.io/packages/atom-typescript",
"repository": {
"type": "git",
"url": "https://github.com/TypeStrong/atom-typescript.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/TypeStrong/atom-typescript/issues"
},
"dependencies": {
"atom-package-deps": "^2.0.3",
"atom-space-pen-views": "^2.0.4",
"babel": "^5.6.23",
"basarat-text-buffer": "6.0.0",
"d3": "^3.5.5",
"emissary": "^1.3.3",
"escape-html": "^1.0.1",
"fuzzaldrin": "^2.1.0",
"glob-expand": "0.0.2",
"htmltojsx": "0.2.4",
"immutable": "^3.7.3",
"json2dts": "0.0.1",
"mkdirp": "^0.5.0",
"ntypescript": "1.201509200205.1",
"react": "^0.13.3",
"season": "^5.1.4",
"strip-bom": "^2.0.0"
},
"devDependencies": {},
"package-deps": [
"linter"
],
"keywords": [
"typescript",
"javascript",
"html"
]
}