This repository has been archived by the owner on Oct 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
77 lines (77 loc) · 2.01 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
{
"name": "ide-haskell-repl",
"main": "./lib/ide-haskell-repl",
"version": "0.11.1",
"description": "Haskell REPL support for ide-haskell",
"keywords": [
"ide-haskell",
"ide",
"haskell",
"repl"
],
"activationHooks": [
"language-haskell:grammar-used"
],
"repository": "https://github.com/atom-haskell/ide-haskell-repl",
"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",
"dependencies": {
"atom-haskell-utils": "^2.1.0",
"atom-highlight": "^0.4.2",
"etch": "^0.14.0",
"fuzzaldrin": "^2.1.0",
"promise-queue": "^2.2.5",
"tree-kill": "^1.2.2",
"tslib": "^1.11.1"
},
"consumedServices": {
"ide-haskell-upi": {
"description": "Uses ide-haskell's unified pluggable interface",
"versions": {
"^0.3.0": "consumeUPI"
}
},
"autocomplete.watchEditor": {
"versions": {
"^1.0.0": "consumeWatchEditor"
}
}
},
"providedServices": {
"autocomplete.provider": {
"versions": {
"3.0.0": "autocompleteProvider_3_0_0"
}
}
},
"deserializers": {
"IdeHaskellReplView": "createReplView"
},
"devDependencies": {
"@types/atom": "^1.40.2",
"@types/chai": "^4.2.11",
"@types/fuzzaldrin": "^2.1.2",
"@types/mocha": "^7.0.2",
"@types/node": "^10",
"atom-haskell-tslint-rules": "^0.2.2",
"atom-ts-spec-runner": "^1.1.1",
"chai": "^4.2.0",
"mocha": "^7.1.1",
"prettier": "^1",
"ts-node": "^8.8.2",
"tslint": "^6.1.1",
"typescript": "~3.8.3",
"typescript-tslint-plugin": "^0.5.5"
}
}