This repository has been archived by the owner on Dec 25, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
51 lines (51 loc) · 1.89 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
{
"name": "nova-typescript",
"version": "0.0.0",
"description": "TypeScript language support for Nova.",
"main": "",
"private": true,
"scripts": {
"build": "rollup -c rollup.config.main.js && rm -rf typescript.novaextension/node_modules",
"test": "jest",
"lint": "concurrently 'yarn:lint:*'",
"lint:eslint": "eslint --ignore-path .gitignore \"**/*.{ts,js}\"",
"lint:prettier": "prettier --ignore-path .gitignore --check \"**/*.{ts,js,json,md,yml}\"",
"lint:json": "find . -name node_modules -prune -false -o -type f -name '*.json' -exec node -e 'require(\"{}\")' \\;",
"fix": "concurrently 'yarn:fix:*'",
"fix:eslint": "eslint --fix --ignore-path .gitignore \"**/*.{ts,js}\"",
"fix:prettier": "prettier --ignore-path .gitignore --write \"**/*.{ts,js,json,md,yml}\"",
"watch": "onchange -i \"src/**\" \"rollup.*.js\" -- npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/apexskier/nova-typescript.git"
},
"author": "Cameron Little",
"license": "MIT",
"bugs": {
"url": "https://github.com/apexskier/nova-typescript/issues"
},
"homepage": "https://github.com/apexskier/nova-typescript",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/jest": "^27.4.1",
"@types/nova-editor-node": "^5.1.4",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"concurrently": "^8.2.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-nova": "^1.7.0",
"jest": "^26.6.3",
"nova-extension-utils": "^1.4.0",
"onchange": "^7.1.0",
"prettier": "^2.8.8",
"rollup": "^2.79.1",
"rollup-plugin-typescript2": "^0.35.0",
"ts-jest": "^26.5.6",
"typescript": "^4.9.5",
"vscode-languageserver-protocol": "^3.17.5",
"vscode-languageserver-types": "^3.17.1"
}
}