This repository was archived by the owner on Oct 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.47 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.47 KB
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
{
"name": "ide-haskell-hlint",
"main": "./lib/main",
"version": "0.1.2",
"description": "Provides standalone hlint support for IDE-Haskell",
"keywords": [
"ide-haskell",
"ide",
"haskell",
"hlint",
"backend"
],
"repository": "https://github.com/atom-haskell/ide-haskell-hlint",
"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",
"tslib": "^1.11.1"
},
"providedServices": {
"ide-haskell-upi-plugin": {
"versions": {
"0.3.2": "provideUPI"
}
}
},
"devDependencies": {
"@types/atom": "~1.40.1",
"@types/chai": "^4.2.10",
"@types/mocha": "^7.0.2",
"@types/node": "^10.12.15",
"atom-haskell-tslint-rules": "^0.2.2",
"atom-ts-spec-runner": "^1.1.1",
"chai": "^4.2.0",
"prettier": "^1.19.1",
"ts-node": "^8.6.2",
"tslint": "^6.0.0",
"typescript": "^3.9.5",
"typescript-tslint-plugin": "^0.5.5"
}
}