-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.67 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
54
55
56
57
58
59
60
61
{
"name": "@marxlnfcs/wildduck-api",
"version": "1.2.3",
"description": "Provides a client to interact with the wildduck api",
"main": "index.js",
"private": false,
"scripts": {
"test": "jest --runInBand",
"generate-docs": "typedoc --options typedoc.config.js",
"generate-index": "rimraf ./src/index.ts && barrelsby --config ./barrelsby.config.json",
"generate-schema": "node scripts/generate-schemas.js",
"upgrade-packages": "node scripts/upgrade-dependencies.js",
"clean": "rimraf dist",
"build": "npm run clean && tsc && node scripts/build-package.js",
"publish": "npm run build && cd dist && npm publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marxlnfcs/wildduck-api.git"
},
"keywords": [
"wildduck",
"api",
"restapi"
],
"author": "marxlnfcs",
"license": "MIT",
"bugs": {
"url": "https://github.com/marxlnfcs/wildduck-api/issues"
},
"homepage": "https://marxlnfcs.github.io/wildduck-api/",
"dependencies": {
"axios": "^1.4.0",
"eventsource": "^2.0.2",
"form-data": "^4.0.0",
"lodash": "^4.17.21",
"md5": "^2.3.0",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@types/eventsource": "^1.1.11",
"@types/form-data": "^2.5.0",
"@types/inquirer": "^9.0.3",
"@types/jest": "^29.5.1",
"@types/lodash": "^4.14.194",
"@types/node": "^18.16.3",
"barrelsby": "^2.7.0",
"glob": "^10.2.2",
"inquirer": "^9.2.1",
"jest": "^29.5.0",
"rimraf": "^5.0.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typedoc": "^0.24.6",
"typescript": "^5.0.4"
},
"directories": {
"doc": "docs",
"test": "tests"
}
}