-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 1.93 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
89
90
{
"name": "atom-typescript",
"version": "10.1.4",
"main": "./dist/main/atomts",
"bin": {
"atbuild": "./dist/main/bin/atbuild"
},
"preferGlobal": "true",
"description": "The only TypeScript plugin you will ever need.",
"scripts": {
"test": "ntsc -p ./lib",
"build": "node scripts/grammar.js",
"prepublish": "typings install"
},
"engines": {
"atom": ">=0.199.0 <2.0.0",
"node": "*"
},
"providedServices": {
"autocomplete.provider": {
"versions": {
"2.0.0": "provide"
}
},
"linter": {
"versions": {
"1.0.0": "provideLinter"
}
},
"hyperclick.provider": {
"versions": {
"0.0.0": "getHyperclickProvider"
}
}
},
"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",
"detect-indent": "^4.0.0",
"detect-newline": "^2.1.0",
"emissary": "^1.3.3",
"escape-html": "^1.0.1",
"findup": "^0.1.5",
"fuzzaldrin": "^2.1.0",
"glob": "^5.0.15",
"htmltojsx": "0.2.4",
"immutable": "^3.7.3",
"json2dts": "0.0.1",
"mkdirp": "^0.5.0",
"ntypescript": "1.201607050909.1",
"react": "^0.13.3",
"season": "^5.1.4",
"tsconfig": "^2.2.0",
"xtend": "^4.0.0"
},
"devDependencies": {
"cson": "^3.0.2",
"js-yaml": "^3.5.2",
"mz": "^2.1.0",
"popsicle": "^3.0.1",
"typings": "0.7.9"
},
"package-deps": [
"linter"
],
"keywords": [
"typescript",
"javascript",
"html"
]
}