This repository has been archived by the owner on Mar 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
75 lines (75 loc) · 2.08 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
{
"name": "haskell-ghc-mod",
"main": "./lib/haskell-ghc-mod",
"version": "2.2.6",
"description": "Provides backends for ide-haskell and autocomplete-haskell",
"keywords": [
"ide-haskell",
"ide",
"haskell",
"ghc-mod",
"backend"
],
"repository": "https://github.com/atom-haskell/haskell-ghc-mod",
"license": "MIT",
"engines": {
"atom": ">=1.24.0 <2.0.0"
},
"scripts": {
"build": "tsc -p .",
"prettier": "prettier --write 'src/**/*.ts?(x)' 'spec/**/*.ts?(x)'",
"prettier-check": "prettier -l 'src/**/*.ts?(x)' 'spec/**/*.ts?(x)'",
"typecheck": "tsc --noEmit -p . && tsc --noEmit -p spec",
"lint": "tslint --project . && tslint --project spec",
"test": "npm run typecheck && npm run lint && npm run prettier-check"
},
"atomTestRunner": "./node_modules/atom-ts-spec-runner/runner.js",
"activationHooks": [
"language-haskell:grammar-used"
],
"dependencies": {
"atom-haskell-utils": "^1.0.2",
"atom-select-list": "^0.7.2",
"fuzzaldrin": "^2.1.0",
"opener": "^1.5.1",
"pidusage": ">=2.0.17 <2.0.19",
"promise-queue": "^2.2.5",
"temp": "^0.9.0",
"tslib": "^1.9.3",
"underscore": "^1.9.1"
},
"consumedServices": {
"ide-haskell-upi": {
"description": "Uses ide-haskell's unified pluggable interface",
"versions": {
"^0.3.0": "consumeUPI"
}
}
},
"providedServices": {
"haskell-completion-backend": {
"description": "Implements general haskell-completion-backend spec",
"versions": {
"1.0.0": "provideCompletionBackend"
}
}
},
"devDependencies": {
"@types/atom": "~1.31.1",
"@types/chai": "^4.1.7",
"@types/fuzzaldrin": "^2.1.2",
"@types/mocha": "^5.2.6",
"@types/node": "^8",
"@types/opener": "^1.4.0",
"@types/pidusage": "^2.0.1",
"@types/temp": "^0.8.33",
"@types/underscore": "^1.8.13",
"atom-haskell-tslint-rules": "^0.2.2",
"atom-ts-spec-runner": "^1.1.1",
"chai": "^4.2.0",
"prettier": "^1.16.4",
"ts-node": "^8.0.3",
"tslint": "^5.14.0",
"typescript": "~3.3.4000"
}
}