-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.38 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
{
"name": "nova-procfile",
"version": "0.3.0",
"description": "Grammar & features for Procfiles",
"license": "BSD-3-Clause",
"private": true,
"homepage": "https://github.com/benspaulding/nova-procfile",
"repository": {
"type": "git",
"url": "https://github.com/benspaulding/nova-procfile.git"
},
"bugs": {
"url": "https://github.com/benspaulding/nova-procfile/issues"
},
"author": {
"name": "Ben Spaulding",
"email": "ben@spaulding.im",
"url": "https://www.benspaulding.com"
},
"keywords": [
"nova",
"heroku",
"procfile"
],
"engines": {
"node": ">=20.0.0"
},
"main": "Procfile.novaextension/Scripts/main.js",
"scripts": {
"nova:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint src --ext={j,t}s --fix",
"format": "prettier '**/*.{j,t}s' '**/*.json' '**/*.md' '**/*.y*ml' --write",
"watch": "npm run compile -- -w",
"pretest": "npm run compile && npm run lint && npm run format"
},
"devDependencies": {
"@tsconfig/node20": "*",
"@types/eslint": "*",
"@types/glob": "*",
"@types/jest": "*",
"@types/nova-editor": "*",
"@typescript-eslint/eslint-plugin": "*",
"@typescript-eslint/parser": "*",
"eslint": "*",
"eslint-config-prettier": "*",
"eslint-plugin-nova": "*",
"glob": "*",
"jest": "*",
"prettier": "*",
"typescript": "*"
}
}