-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.32 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
{
"name": "brackets-toornament-layer",
"version": "1.0.2",
"description": "A layer to convert Toornament data to brackets-viewer data",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"dependencies": {
"brackets-model": "^1.3.9"
},
"devDependencies": {
"@types/node": "^14.17.34",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-plugin-jsdoc": "^32.3.4",
"node-fetch": "2",
"ts-node": "^9.1.1",
"typescript": "^4.5.2"
},
"scripts": {
"lint": "eslint **/*.{js,ts} --fix",
"start": "ts-node src/main.ts",
"build": "tsc",
"prepare": "npm run build",
"prepublishOnly": "npm run build"
},
"keywords": [
"typescript",
"tournament",
"brackets",
"toornament",
"database"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Drarig29/brackets-toornament-layer.git"
},
"author": "Corentin Girard",
"license": "ISC",
"bugs": {
"url": "https://github.com/Drarig29/brackets-toornament-layer/issues"
},
"homepage": "https://github.com/Drarig29/brackets-toornament-layer#readme"
}