-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 872 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 872 Bytes
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
{
"name": "zermelo.ts",
"version": "0.1.3",
"description": "The node package for using the zermelo api",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"prepublishOnly": "yarn compile",
"lint": "eslint --fix --ext ts src",
"test": "mocha",
"compile": "tsc -p .",
"watch": "tsc -p . -w",
"docs": "typedoc"
},
"main": "dist/index",
"author": "Stijn <stijn@kolkies.dev>",
"license": "MIT",
"devDependencies": {
"@types/node": "^13.9.1",
"@types/node-fetch": "^2.5.5",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"mocha": "^7.1.1",
"typedoc": "^0.17.0",
"typescript": "^3.8.3"
},
"dependencies": {
"node-fetch": "^2.6.0"
},
"repository": "git@github.com:Kolkies/Zermelo.ts.git"
}