-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.23 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
{
"name": "@p2olab/evaluation-interface",
"description": "interface definitions for evaluation-backend",
"version": "0.0.1-alpha.23",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:p2o-lab/evaluation-interface.git"
},
"homepage": "https://github.com/p2o-lab/evaluation-interface",
"license": "MIT",
"scripts": {
"build": "tsc",
"lint": "eslint -c .eslintrc.js --ext .ts src",
"fixLinting": "npm run lint -- --fix",
"prepare": "npm run lint && npm run build",
"postversion": "npm publish"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/eslint-plugin-tslint": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsdoc": "^37.6.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"typescript": "^4.5.4"
},
"author": "P2O-Lab <[email protected]>",
"contributors": [
"Julius Lorenz <[email protected]>",
"Tuan Son Dinh <[email protected]>"
],
"bugs": {
"url": "https://github.com/p2o-lab/evaluation-interface/issues"
}
}