forked from bamlab/flashlight
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 2.01 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
54
55
56
{
"name": "flashlight",
"version": "0.14.0",
"private": "true",
"repository": {
"type": "git",
"url": "git+https://github.com/bamlab/flashlight.git"
},
"author": {
"name": "Almouro",
"email": "alexandrem@bam.tech"
},
"license": "MIT",
"workspaces": [
"packages/*/*",
"examples/*"
],
"bugs": {
"url": "https://github.com/bamlab/flashlight/issues"
},
"scripts": {
"clean-dist": "rm -rf packages/*/*/dist && rm -rf packages/*/*/tsconfig.tsbuildinfo",
"watch": "tsc --build --watch",
"test": "prettier --check . && yarn build && eslint . --max-warnings 7 && jest",
"test:coverage": "yarn clean-dist && jest --coverage",
"test:lint": "eslint . --ext .js,.ts,.tsx --cache",
"run-cli-example": "node packages/cli-example",
"build": "rm -rf .parcel-cache && yarn clean-dist && tsc --build && yarn workspace @perf-profiler/web-reporter build && yarn workspace @perf-profiler/measure build",
"release": "yarn build && lerna publish",
"test:e2e": "mkdir -p report && npx @perf-profiler/aws-device-farm runTest --apkPath .github/workflows/example.apk --projectName 'Flashlight-Serverless' --reportDestinationPath report --testCommand 'npx ts-node examples/e2e/appium-ci.test.ts' --testFolder .",
"prepare": "husky install"
},
"homepage": "https://github.com/bamlab/flashlight#readme",
"devDependencies": {
"@types/jest": "^29.2.3",
"@types/lodash": "^4.14.199",
"@typescript-eslint/utils": "^5.15.0",
"eslint": "^8.0.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-custom-rules": "link:./packages/eslint-plugin-flashlight-eslint-rules/dist",
"eslint-plugin-import": "^2.26.0",
"husky": ">=6",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"lerna": "^4.0.0",
"lint-staged": "13.0.3",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3",
"typescript": "^4.7.4"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --cache --fix",
"*.{ts,tsx,md,json}": "prettier --write"
},
"dependencies": {}
}