forked from SeleniumHQ/selenium-ide
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.23 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 3.23 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
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
{
"name": "selenium-ide-monorepo",
"repository": "git@github.com:SeleniumHQ/selenium-ide.git",
"license": "Apache-2.0",
"private": true,
"scripts": {
"start": "cd packages/selenium-ide && yarn start",
"build": "run-s build:ts build:ide",
"build:electron": "lerna run --scope @seleniumhq/selenium-ide --loglevel verbose build:electron",
"build:ide": "lerna run --scope @seleniumhq/selenium-ide --loglevel verbose build:webpack",
"build:ts": "tsc --build --verbose",
"clean": "rimraf packages/*/build packages/*/dist packages/*/node_modules packages/*/tsconfig.tsbuildinfo node_modules",
"clean:nuke": "git clean -fdx",
"test": "jest",
"test:e2e": "jest --testMatch \"**/packages/**/__tests__/**/*.e2e.js\"",
"lint": "yarn lint:scripts",
"lint:scripts": "eslint --ignore-pattern node_modules --ignore-pattern third-party --ignore-pattern dist --ignore-pattern build --ignore-pattern json --ext .ts,.tsx --ext .js packages/",
"typecheck": "tsc --noEmit --composite false",
"watch": "run-p watch:ts watch:webpack",
"watch:webpack": "lerna run --parallel --stream --scope @seleniumhq/selenium-ide --loglevel verbose watch",
"watch:ts": "tsc --build --verbose --watch"
},
"engines": {
"node": "16.x"
},
"files": [],
"jest": {
"testURL": "http://localhost/index.html",
"moduleNameMapper": {
"^.+\\.(css|scss)$": "identity-obj-proxy"
},
"setupFilesAfterEnv": [
"./scripts/jest/test.config.js"
],
"testMatch": [
"**/packages/**/__test?(s)__/**/*.spec.[jt]s?(x)"
],
"testPathIgnorePatterns": [
"/node_modules/"
],
"transform": {
"^.+\\.jsx?$": "babel-jest",
"^.+\\.tsx?$": "ts-jest"
}
},
"workspaces": {
"packages": ["packages/*"]
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.8",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-export-namespace-from": "^7.16.7",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@bazel/bazel": "^2.1.0",
"@bazel/buildifier": "^5.0.1",
"@bazel/ibazel": "^0.16.2",
"@bazel/jasmine": "^5.3.0",
"@bazel/typescript": "^5.3.0",
"@testing-library/jest-dom": "^5.16.2",
"@types/jest": "^27.4.1",
"@types/node": "^16.11.26",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.5.1",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.2",
"eslint-plugin-no-only-tests": "^2.6.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"identity-obj-proxy": "^3.0.0",
"jasmine": "^4.0.2",
"jasmine-core": "^4.0.1",
"jest": "^27.5.1",
"jest-cli": "27.5.1",
"lerna": "^4.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.0",
"rimraf": "^3.0.2",
"stylelint": "^14.6.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^25.0.0",
"stylelint-prettier": "^2.0.0",
"ts-jest": "^27.1.3",
"typescript": "^4.6.2"
}
}