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 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.75 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
{
"name": "haskell-debug",
"version": "0.3.6",
"description": "Implements a graphical haskell debugger in atom, using ghci.",
"main": "lib/main.js",
"scripts": {
"build": "tsc -p lib-src && tsc -p bin-src",
"prettier": "prettier --write '*-src/**/*.ts?(x)' 'spec/**/*.ts?(x)'",
"prettier-check": "prettier -l '*-src/**/*.ts?(x)' 'spec/**/*.ts?(x)'",
"typecheck": "tsc --noEmit -p lib-src && tsc --noEmit -p bin-src && tsc --noEmit -p spec",
"lint": "tslint --project lib-src && tslint --project bin-src && tslint --project spec",
"test": "npm run typecheck && npm run lint && npm run prettier-check"
},
"atomTestRunner": "./node_modules/atom-ts-spec-runner/runner.js",
"repository": "https://github.com/atom-haskell/haskell-debug",
"keywords": [
"haskell",
"debugger"
],
"author": "Thomas Hickman",
"license": "MIT",
"bugs": {
"url": "https://github.com/atom-haskell/haskell-debug/issues"
},
"homepage": "https://github.com/atom-haskell/haskell-debug#readme",
"consumedServices": {
"ide-haskell-upi": {
"versions": {
"^0.3.0": "consumeHaskellUpi"
}
}
},
"dependencies": {
"atom-haskell-utils": "^1.0.2",
"atom-select-list": "^0.7.1",
"draggable": "^4.2.0",
"lodash": "^4.17.5",
"promise-queue": "^2.2.5",
"tree-kill": "^1.2.0",
"tslib": "^1.9.0"
},
"devDependencies": {
"@types/atom": "~1.24.1",
"@types/chai": "^4.1.2",
"@types/lodash": "^4.14.104",
"@types/mocha": "^2.2.48",
"atom-haskell-tslint-rules": "^0.2.2",
"atom-ts-spec-runner": "^1.1.0",
"chai": "^4.1.2",
"prettier": "^1.11.1",
"ts-node": "^5.0.1",
"tslint": "^5.9.1",
"typescript": "~2.7.2"
},
"engines": {
"atom": ">=1.24.0 <2.0.0"
}
}