This repository was archived by the owner on Apr 20, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.85 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.85 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
{
"name": "squeegee",
"version": "1.0.0",
"description": "Squeegee mod for nextcloud",
"main": "filelist_plugin.js",
"directories": {
"lib": "lib",
"test": "tests/acceptance"
},
"scripts": {
"build": "echo 'nothing to build'",
"docker": "docker-compose -f docker-compose-cleanup.yml down -v && docker-compose up -d",
"lint": "tslint --project tsconfig.json",
"test": "npm run docker && ts-node tests/acceptance/prepare-docker-nextcloud-container.ts && jest --runInBand; docker-compose -f docker-compose-cleanup.yml down -v",
"test-watch": "npm run docker && ts-node tests/acceptance/prepare-docker-nextcloud-container.ts && jest --runInBand --watch",
"fast-test-watch": "ts-node tests/acceptance/prepare-docker-nextcloud-container.ts && jest --runInBand --watch",
"fast-test-watch-nostart": "ts-node tests/acceptance/prepare-docker-nextcloud-container.ts && jest --runInBand --watch --testNamePattern=stopTestingAtStart"
},
"repository": {
"type": "git",
"url": "git+https://github.com/squeegeeOrg/nextcloud-squeegee.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/squeegeeOrg/nextcloud-squeegee/issues"
},
"homepage": "https://github.com/squeegeeOrg/nextcloud-squeegee#readme",
"devDependencies": {
"@types/cheerio": "^0.22.16",
"@types/jest": "^24.0.11",
"@types/jsdom": "12.2.4",
"@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",
"nextcloud-link": "https://github.com/squeegeeOrg/nextcloud-link"
}
}