forked from tentwentyfour/nextcloud-link
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.06 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.06 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "nextcloud-link",
"version": "1.1.3",
"description": "Javascript API to talk to Nextcloud",
"main": "compiled/source/index.js",
"scripts": {
"buildWebpack": "npx webpack --mode production",
"build": "tsc",
"docker": "docker-compose down -v && docker-compose up -d",
"lint": "tslint --project tsconfig.json",
"test": "npm run docker && ts-node tests/prepare-docker-nextcloud-container.ts && jest --runInBand; docker-compose down -v",
"test-watch": "npm run docker && ts-node tests/prepare-docker-nextcloud-container.ts && jest --runInBand --watch",
"fast-test-watch": "ts-node tests/prepare-docker-nextcloud-container.ts && jest --runInBand --watch",
"fast-test-watch-nostart": "ts-node tests/prepare-docker-nextcloud-container.ts && jest --runInBand --watch --testNamePattern=stopTestingAtStart"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tentwentyfour/nextcloud-link.git"
},
"keywords": [
"nextcloud"
],
"author": "TenTwentyFour s.à r.l.",
"license": "MIT",
"bugs": {
"url": "https://github.com/tentwentyfour/nextcloud-link/issues"
},
"dependencies": {
"axios": "^0.19.2",
"cheerio": "^1.0.0-rc.3",
"helpbox": "^7.1.1",
"lodash": "^4.17.15",
"webdav-client": "^1.4.3",
"xml-js-builder": "^1.0.3"
},
"types": "./compiled/source/index.d.ts",
"devDependencies": {
"@types/cheerio": "^0.22.16",
"@types/jest": "^24.0.11",
"@types/lodash": "^4.14.149",
"@types/node": "^11.15.6",
"@types/request": "^2.48.4",
"jest": "^24.7.1",
"prettier": "^1.19.1",
"ts-jest": "^24.0.1",
"ts-loader": "^5.3.3",
"ts-node": "^7.0.1",
"tslint": "^5.18.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.4.1",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"testMatch": [
"**/*-jest.ts"
],
"transform": {
"\\.ts$": "ts-jest"
},
"verbose": true,
"testEnvironment": "node"
}
}