-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.14 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
{
"name": "brackets-model",
"version": "1.5.0",
"description": "The types needed by brackets-manager.js and brackets-viewer.js",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"keywords": [
"types",
"model",
"brackets",
"tournament",
"manager",
"viewer"
],
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "echo 'No tests for this project'",
"prepare": "npm run build",
"prepublishOnly": "npm run build",
"lint": "eslint '**/*.{js,ts}' --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Drarig29/brackets-model.git"
},
"author": "Corentin Girard",
"license": "ISC",
"bugs": {
"url": "https://github.com/Drarig29/brackets-model/issues"
},
"homepage": "https://github.com/Drarig29/brackets-model#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"eslint": "^8.1.0",
"eslint-plugin-jsdoc": "^37.0.3",
"typescript": "^4.4.4"
}
}