forked from lunasec-io/lunasec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 4.01 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"author": "",
"bugs": {
"url": "https://github.com/lunasec-io/lunasec/issues"
},
"dependencies": {
"lerna": "^4.0.0"
},
"description": "This monorepo holds the LunaSec SDKs, servers, and demo application.",
"devDependencies": {
"@jest/globals": "^27.4.2",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^9.1.0",
"eslint": "8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-comments": "^1.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-import-order": "^2.1.4",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.2.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-vue": "^8.2.0",
"husky": "^7.0.4",
"js-yaml": "^4.1.0",
"lerna": "^4.0.0",
"lint-staged": "^12.1.2",
"prettier": "^2.5.0",
"rimraf": "^3.0.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.4.2",
"uuid": "^8.3.2"
},
"dependenciesMeta": {
"eslint@8.5.0": {
"unplugged": true
}
},
"homepage": "https://github.com/lunasec-io/lunasec#readme",
"license": "Apache-2.0",
"name": "lunasec",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/lunasec-io/lunasec.git"
},
"scripts": {
"lunasec": "node js/sdks/packages/cli/build/cli.js",
"license:check": "./tools/license-checker/run-license-check.sh check",
"license:fix": "./tools/license-checker/run-license-check.sh fix",
"license:install": "cd tools/license-checker && ./install-skywalking-eyes.sh",
"test:e2e:local": "cd js/demo-apps/packages/react-front-end && yarn run test:e2e",
"test:e2e:docker": "cd js/demo-apps/packages/react-front-end && yarn run test:e2e:docker",
"test:unit:tokenizer": "cd js/sdks/packages/tokenizer-sdk && yarn run test",
"test:unit:auth": "cd js/sdks/packages/browser-common && yarn run test",
"test:unit:js": "yarn test:unit:auth && yarn test:unit:tokenizer",
"test:unit:go": "cd go && go test -cover ./...",
"test:unit": "yarn test:unit:js && yarn test:unit:go",
"test:all": "yarn test:unit && yarn run test:e2e:local",
"lint:fix": "yarn run lint --fix",
"lint": "yarn run eslint --ext .js,.jsx,.ts,.tsx,.vue .",
"version:release": "./tools/version-release.sh",
"compile:dev:infrastructure": "cd js/internal-infrastructure/s3-redirect-generator && yarn run compile",
"compile:dev:sdks": "cd js/sdks && yarn run compile:dev",
"compile:release:sdks": "cd js/sdks && yarn run compile:release",
"compile:release:services": "cd go && yarn run compile:release",
"compile:release:demos": "VERSION=$(yarn run --silent monorepo:version) js/docker/release.sh build",
"compile:release": "yarn run compile:release:sdks && yarn run compile:release:services && yarn run compile:release:demos",
"postinstall": "./tools/postinstall.sh",
"publish:release:sdks": "lerna publish --no-verify-access -y from-package",
"publish:release:services": "cd go && yarn run publish:release",
"publish:release:demos": "VERSION=$(yarn run --silent monorepo:version) js/docker/release.sh publish",
"publish:release": "yarn run publish:release:sdks && yarn run publish:release:services && yarn run publish:release:demos",
"prepare": "yarn run husky install",
"monorepo:version": "yarn node -p 'require(\"./lerna.json\").version'"
},
"version": "1.0.0",
"workspaces": {
"packages": [
"./go",
"./js/sdks/packages/*",
"./js/service/packages/*",
"./js/demo-apps/packages/*",
"./docs",
"./js/sdks",
"./js/internal-infrastructure/lunatrace-ui/cdk",
"./js/internal-infrastructure/s3-redirect-generator",
"./js/internal-infrastructure/metrics-server-backend",
"./lunatrace/*"
]
},
"packageManager": "yarn@3.1.1"
}