-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.56 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.56 KB
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
{
"name": "nextcloud-webdav-client",
"version": "1.0.0",
"description": "Wrapper for nextcloud webdav",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"scripts": {
"clean": "rm -rf build/*",
"start": "npm run build && node build/src/index.js",
"build": "tsc",
"prepare": "npm run build",
"prettier": "npm run prettier-md && npm run prettier-ts",
"prettier-md": "prettier --parser markdown --write \"*.md\"",
"prettier-ts": "prettier --write \"./src/**/*.ts\"",
"lint": "npm run lint-ts && npm run lint-md",
"lint-md": "markdownlint \"*.md\"",
"lint-ts": "tslint --project ./tsconfig.json --fix \"./src/**/*.ts\"",
"test": "mocha --opts ./mocha.opts './tests/**/*.test.ts'",
"watch": "nodemon ./src/index.ts | bunyan"
},
"author": "Wuerth-IT GmbH",
"license": "UNLICENSED",
"private": true,
"repository": {
"type": "git",
"url": "git://gitlab.com/hcbd/nextcloud.git"
},
"dependencies": {
"@types/jsdom": "12.2.4",
"@types/xmldom": "0.1.29",
"axios": "0.19.1",
"jsdom": "16.0.1"
},
"devDependencies": {
"@types/chai": "4.2.6",
"@types/config": "0.0.36",
"@types/mocha": "5.2.7",
"@types/node": "12.12.14",
"@types/ioredis": "4.14.0",
"chai": "4.2.0",
"ioredis-mock": "4.18.4",
"markdownlint-cli": "0.18.0",
"mocha": "6.2.0",
"nodemon": "1.19.2",
"prettier": "1.18.2",
"ts-node": "8.4.1",
"tslint": "5.20.0",
"tslint-sonarts": "1.9.0",
"typescript": "3.6.3"
},
"engines": {
"node": ">= 10.0",
"npm": ">= 5.6"
}
}