forked from staticdeploy/staticdeploy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.57 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.57 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
{
"name": "@staticdeploy/staticdeploy",
"description": "An open-source platform for deploying static apps",
"version": "0.0.0",
"private": true,
"workspaces": [
"management-console",
"cli",
"core",
"http-adapters",
"jwt-authentication-strategy",
"memory-storages",
"oidc-authentication-strategy",
"pg-s3-storages",
"sdk",
"serve-static",
"staticdeploy",
"storages-test-suite",
"tar-archiver",
"website"
],
"author": "Paolo Scanferla <paolo.scanferla@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/staticdeploy/staticdeploy.git"
},
"bugs": {
"url": "https://github.com/staticdeploy/staticdeploy/issues"
},
"scripts": {
"compile": "lerna run compile --stream --concurrency 1",
"lint": "lerna run lint --stream --concurrency 1",
"test": "lerna run test --stream --concurrency 1",
"coverage": "nyc --all npm test",
"publish-coverage": "codecov",
"docker:build": "lerna run docker:build --stream --concurrency 1",
"docker:tag-latest": "lerna run docker:tag-latest --stream --concurrency 1",
"docker:push": "lerna run docker:push --stream --concurrency 1",
"release": "lerna version --force-publish=* --allow-branch master --push false",
"lerna": "lerna"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@commitlint/config-lerna-scopes": "^8.3.4",
"codecov": "^3.6.2",
"husky": "^4.2.1",
"lerna": "^3.20.2",
"nyc": "^15.0.0",
"prettier": "^1.19.1"
}
}