This repository has been archived by the owner on May 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
71 lines (71 loc) · 1.72 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
{
"name": "nova-elm",
"version": "0.5.0",
"description": "Provides syntax highlighting and autocompletion for Elm",
"main": "src/index.ts",
"author": "Hans Hoffman",
"license": "MIT",
"repository": "git@github.com:hansjhoffman/nova-elm.git",
"bugs": {
"url": "https://github.com/hansjhoffman/nova-elm/issues"
},
"homepage": "https://github.com/hansjhoffman/nova-elm#readme",
"engines": {
"node": ">=12.17.0"
},
"keywords": [
"elm",
"elm-lang",
"nova",
"nova editor",
"language server"
],
"scripts": {
"build": "make build",
"compile": "make compile",
"format": "make format",
"format:ts": "make format-ts",
"format:xml": "make format-xml",
"lint": "make lint",
"lint:fix": "make lint-fix",
"prepare": "is-ci || husky install",
"test": "make test"
},
"dependencies": {
"fp-ts": "^2.11.8",
"io-ts": "^2.2.16",
"monocle-ts": "^2.3.12",
"ts-pattern": "^3.3.5"
},
"devDependencies": {
"@prettier/plugin-xml": "^1.2.0",
"@types/jest": "^27.4.1",
"@types/node": "^16.11.26",
"@types/nova-editor-node": "^4.1.4",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"esbuild": "^0.14.23",
"esbuild-jest": "^0.5.0",
"eslint": "^8.10.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"is-ci": "^3.0.1",
"jest": "^27.5.1",
"lint-staged": "^12.3.4",
"prettier": "^2.5.1",
"typescript": "^4.6.2"
},
"lint-staged": {
"src/**/*.ts": [
"eslint --fix",
"prettier --write"
],
"elm.novaextension/**/*.xml": [
"prettier --write"
]
},
"resolutions": {
"tslib": "^2.3.0"
}
}