-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
83 lines (83 loc) · 2.85 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
{
"version": "0.5.0",
"name": "universal-test-runner",
"private": true,
"workspaces": [
"packages/universal-test-runner-types",
"packages/universal-test-runner-logger",
"packages/universal-test-runner-spawn",
"packages/universal-test-runner",
"packages/*"
],
"repository": {
"type": "git",
"url": "https://github.com/aws/universal-test-runner"
},
"bugs": {
"url": "https://github.com/aws/universal-test-runner/issues"
},
"homepage": "https://github.com/aws/universal-test-runner#readme",
"scripts": {
"test": "jest tests/ packages/",
"test:integ": "jest tests-integ/",
"test:integ:debug": "DEBUG=1 npm run test:integ",
"test:ci": "npm test -- --coverage --reporters default --reporters jest-junit",
"lint": "eslint --ext .js,.ts .",
"lint:fix": "npm run lint -- --fix",
"lint:last-commit": "commitlint --edit ${1}",
"compile": "tsc && npm run --workspaces compile",
"clean": "npm run --workspaces clean",
"build": "npm run validate-3p-licenses && npm run lint && npm run compile && npm run test:ci",
"cli": "TEP_VERSION=0.1.0 node ./node_modules/.bin/run-tests",
"cli:jest": "npm run cli -- jest",
"cli:maven": "npm run cli -- maven",
"cli:pytest": "npm run cli -- pytest",
"cli:gradle": "npm run cli -- gradle",
"cli:dotnet": "npm run cli -- dotnet",
"generate-attributions": "ts-node ./scripts/generate-attributions",
"generate-readmes": "ts-node ./scripts/generate-readmes",
"validate-3p-licenses": "ts-node ./scripts/validate-3p-licenses",
"prepare": "husky install",
"bump:prerelease": "PRERELEASE_VERSION=\"$npm_package_version-$(echo $COMMIT_ID | cut -c 1-7).0\" bash ./scripts/bump-prerelease.sh",
"bump:release": "bash ./scripts/bump-release.sh",
"publish-packages": "bash ./scripts/publish-packages.sh"
},
"license": "Apache-2.0",
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.21.0",
"@commitlint/cli": "^17.5.1",
"@commitlint/config-conventional": "^17.4.4",
"@types/jest": "^29.5.0",
"@types/node": "^18",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.55.0",
"babel-jest": "^29.3.1",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-junit": "^15.0.0",
"memfs": "^3.4.13",
"prettier": "^2.8.7",
"ts-node": "^10.9.1",
"typescript": "^5.0.3"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/",
"/tests-integ\\/test-projects/"
],
"collectCoverageFrom": [
"<rootDir>/packages/**/*.ts",
"!**/*.test.ts",
"!**/tests/**",
"!**/dist/**",
"!**/node_modules/**"
]
}
}