-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 2.59 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
{
"name": "tagspaces-commons-parent",
"private": true,
"description": "TagSpaces common thumbnails module",
"author": "TagSpaces Authors <contact@tagspaces.org>",
"license": "MIT",
"scripts": {
"start": "cd ./packages/md-sample && npm run start-only",
"npm-install": "npx cross-env PD_PLATFORM=node npm install",
"lerna-clean": "npx lerna clean -y",
"lerna-install-node": "npx lerna@6.6.2 bootstrap --no-ci",
"lerna-install-node-hoist": "npx lerna@6.6.2 bootstrap --no-ci --hoist",
"lerna-version": "npx lerna version",
"lerna-publish": "npm run lerna-build && lerna publish from-package",
"lerna-build": "npx lerna run build",
"lerna-link": "lerna link --force-local",
"update-dynamic-libs-version": "echo 'Run this script before and after lerna-version' && node scripts/updateLocalVersions.js",
"test": "npm run test-aws && npm run test-indexer && npm run test-webdav && npm run test-node && npm run test-common && npm run test-ws && npm run test-shell",
"test-aws": "lerna bootstrap --no-ci && jest --config=jest.config.unit.js ./__tests__/common-aws/unit/io-objectstore.test.js",
"test-indexer": "jest --config=jest.config.unit.js ./__tests__/platforms/unit/indexer.test.js",
"test-webdav": "npx cross-env PD_PLATFORM=web lerna bootstrap --no-ci && jest --config=jest.config.webdav.unit.js ./__tests__/common-webdav/unit/io-webdav.test.js",
"test-node": "npx cross-env PD_PLATFORM=node lerna bootstrap --no-ci && jest --config=jest.config.node.unit.js ./__tests__/common-node/unit/io-node.test.js",
"test-platform-io-node": "npm run lerna-install-node && jest --runInBand --detectOpenHandles --config=jest.config.node.unit.js ./__tests__/platforms/unit/platform-io.test.js",
"test-common": "jest --colors --config=jest.config.node.unit.js ./__tests__/common/unit/",
"test-ws": "npm --prefix ./packages/tagspaces-ws run test",
"test-shell": "npm --prefix ./packages/tagspaces-shell run test",
"code-format": "prettier --write .",
"husky-install": "husky install"
},
"devDependencies": {
"copy-dir": "^1.3.0",
"detect-port": "^1.3.0",
"directory-exists": "^2.0.1",
"dotenv": "^16.0.1",
"exec-sh": "^0.4.0",
"fs-extra": "^10.0.0",
"husky": "^7.0.4",
"jest": "^26.6.3",
"lerna": "^6.6.2",
"path": "^0.12.7",
"picomatch": "^3.0.1",
"prettier": "2.3.2",
"rimraf": "^3.0.2",
"s3rver": "^3.7.1",
"source-map-loader": "^3.0.0",
"webdav": "^4.11.3",
"webdav-server": "^2.6.2"
},
"workspaces": [
"packages/*"
],
"engines": {
"yarn": "please-use-npm",
"npm": ">= 9.8.1"
}
}