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 2
/
package.json
57 lines (57 loc) · 1.54 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
{
"name": "ide-haskell-cabal",
"main": "./lib/ide-haskell-cabal",
"version": "2.6.1",
"description": "Provides Cabal backend for ide-haskell",
"keywords": [
"ide-haskell",
"ide",
"haskell",
"plugin",
"cabal"
],
"repository": "https://github.com/atom-haskell/ide-haskell-cabal",
"license": "MIT",
"activationHooks": [
"language-haskell:grammar-used"
],
"engines": {
"atom": ">=1.31.0 <2.0.0"
},
"scripts": {
"build": "tsc -p .",
"prettier": "prettier --write 'src/**/*.ts' 'spec/**/*.ts'",
"prettier-check": "prettier -l 'src/**/*.ts' 'spec/**/*.ts'",
"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",
"tslib": "^1.11.1"
},
"consumedServices": {
"ide-haskell-upi": {
"description": "Uses ide-haskell's unified pluggable interface",
"versions": {
"^0.3.0": "consumeUPI"
}
}
},
"devDependencies": {
"@types/atom": "^1.40.1",
"@types/chai": "^4.2.10",
"@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.0",
"prettier": "^1.19.1",
"ts-node": "^8.6.2",
"tslint": "^6.0.0",
"typescript": "^3.8.3",
"typescript-tslint-plugin": "^0.5.5"
}
}