forked from TypeStrong/atom-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 1.86 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
{
"name": "atom-typescript",
"version": "11.0.1",
"main": "./dist/main/atomts",
"preferGlobal": true,
"description": "The only TypeScript plugin you will ever need.",
"activationHooks": [
"atom-typescript:grammar-used"
],
"scripts": {
"build": "tsc -p ./lib",
"grammar": "ts-node scripts/grammar.ts",
"test": "tsc --noEmit -p ./lib && tsc --noEmit -p ./scripts"
},
"engines": {
"atom": ">=0.199.0 <2.0.0",
"node": "*"
},
"consumedServices": {
"linter-indie": {
"versions": {
"^1.0.0": "consumeLinter"
}
},
"status-bar": {
"versions": {
"^1.0.0": "consumeStatusBar"
}
}
},
"providedServices": {
"autocomplete.provider": {
"versions": {
"2.0.0": "provide"
}
}
},
"homepage": "https://github.com/TypeStrong/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": "4.4.1",
"atom-space-pen-views": "^2.0.4",
"byline": "^5.0.0",
"emissary": "^1.3.3",
"escape-html": "^1.0.1",
"fuzzaldrin": "^2.1.0",
"jsx-render-dom": "0.1.2",
"lodash": "^4.17.2",
"resolve": "1.1.7",
"tsconfig": "^2.2.0",
"tslib": "1.2.0",
"typescript": "2.3.0-dev.20170319",
"xtend": "^4.0.0"
},
"devDependencies": {
"@types/atom": "0.0.35",
"@types/byline": "^4.2.31",
"@types/cson": "0.0.30",
"@types/fuzzaldrin": "^2.1.0",
"@types/lodash": "^4.14.51",
"@types/resolve": "0.0.4",
"cson": "^3.0.2",
"mz": "^2.1.0",
"plist": "2.0.1",
"popsicle": "8.2.0",
"ts-node": "1.7.0"
},
"package-deps": [
"linter"
],
"keywords": [
"typescript",
"javascript",
"html"
]
}