-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.17 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
{
"name": "test-frameworks",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"eslint": "eslint src/** frameworks/**",
"clean": "rm -rf ./frameworks/jest/tests/*.test.ts && rm -rf frameworks/node-test-runner/tests/*.test.ts && rm -rf ./frameworks/vitest/tests/*.test.ts",
"build": "yarn clean && node createTests.js",
"jest": "yarn workspace jest test",
"node-test-runner": "yarn workspace node-test-runner test",
"vitest": "yarn workspace vitest test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emilioSp/test-frameworks.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/emilioSp/test-frameworks/issues"
},
"private": "true",
"homepage": "https://github.com/emilioSp/test-frameworks#readme",
"dependencies": {
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"axios": "^1.2.5",
"eslint": "^8.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"workspaces": [
"frameworks/*"
]
}