-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
50 lines (50 loc) · 2.11 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
{
"name": "nextcloud-link",
"version": "1.2.9",
"description": "Javascript API to talk to Nextcloud",
"main": "compiled/client.js",
"scripts": {
"build": "npm run compile && npm run types:generate",
"compile": "npx esbuild --bundle --platform=node --target=es2018 source/client.ts --outdir=compiled --minify",
"types:generate": "npx typescript source/*.ts source/**/*.ts --declaration --emitDeclarationOnly --outDir compiled/source/",
"docker": "npm run docker:stop && docker-compose -p nextcloud-link up -d",
"docker:stop": "docker-compose -p nextcloud-link down -v",
"lint": "tslint --project tsconfig.json",
"test": "npm run docker && ts-node tests/prepare-docker-nextcloud-container.ts && jest --config jest.conf.js --runInBand; npm run docker:stop",
"test-ci": "npm run docker && ts-node tests/prepare-docker-nextcloud-container.ts && jest --config jest.conf.js --runInBand",
"test-watch": "npm run docker && ts-node tests/prepare-docker-nextcloud-container.ts && jest --config jest.conf.js --runInBand --watch",
"fast-test-watch": "ts-node tests/prepare-docker-nextcloud-container.ts && jest --config jest.conf.js --runInBand --watch",
"fast-test-watch-nostart": "ts-node tests/prepare-docker-nextcloud-container.ts && jest --config jest.conf.js --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": {
"helpbox": "^7.2.0",
"webdav-client": "^1.4.3"
},
"types": "./compiled/source/client.d.ts",
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^14.14.14",
"esbuild": "^0.13.12",
"jest": "^27.3.1",
"node-notifier": ">=8.0.1",
"ts-jest": "^27.0.7",
"ts-loader": "^9.4.2",
"ts-node": "^8.10.2",
"tslint": "^6.1.3",
"tslint-config-airbnb": "^5.11.1",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.9.7"
}
}