-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·50 lines (50 loc) · 1.57 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
{
"name": "@bluelibs/runner",
"version": "2.2.2",
"description": "BlueLibs Runner",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/bluelibs/bluelibs"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"pretest": "npm run build",
"test": "jest --verbose dist/__tests__/index.js",
"test:dev": "jest --verbose src/__tests__/index.ts --watch",
"coverage": "jest --verbose src/__tests__/index.ts --coverage",
"test:clean": "jest --clearCache",
"testonly": "npm test",
"test:ci": "npm run coverage -- --ci --maxWorkers=2 --reporters=default --reporters=jest-junit",
"prepublishOnly": "npm run build",
"typedoc": "typedoc --options typedoc.json",
"benchmark": "jest --testMatch=\"**/__tests__/benchmark/benchmark.test.ts\" --testTimeout 10000"
},
"devDependencies": {
"@types/benchmark": "^2.1.5",
"@types/graphql": "^0.11.3",
"@types/jest": "^27.0.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "2.3.0",
"@typescript-eslint/parser": "2.3.0",
"benchmark": "^2.1.4",
"eslint": "^6.6.0",
"eslint-config-prettier": "6.3.0",
"eslint-plugin-prettier": "3.1.1",
"jest": "^29.0.0",
"jest-junit": "^10.0.0",
"prettier": "^2.0.5",
"reflect-metadata": "^0.2.2",
"source-map-support": "^0.5.13",
"ts-jest": "^29.0.0",
"typedoc": "^0.26.7",
"typedoc-material-theme": "^1.1.0",
"typescript": "^5.6.2"
},
"typings": "dist/index.d.ts",
"typescript": {
"definition": "dist/index.d.ts"
},
"license": "MIT"
}