-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.52 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
{
"name": "di.libx.js",
"version": "2.3.3",
"main": "./build/index",
"types": "./build",
"license": "MIT",
"author": "",
"scripts": {
"build": "tsc",
"build-browser": "npx -p pax.libx.js pax-browserify src/browser.ts dist -y --minify",
"watch": "tsc -w",
"main": "node build/Main.js",
"test": "jest",
"test:ci": "jest --ci --reporters=default --reporters=jest-junit --coverage --coverageReporters=cobertura --coverageReporters=html",
"bump": "./bump.sh",
"format": "prettier --config .prettierrc 'src/**/*.ts' 'tests/**/*.ts' --write"
},
"files": [
"build/**",
"dist/**",
"src/**",
"*.js",
"*.ts"
],
"dependencies": {
"concurrency.libx.js": "^0.2.23"
},
"devDependencies": {
"@types/jest": "^25.1.2",
"@types/node": "^13.7.1",
"jest": "^25.1.0",
"jest-junit": "^10.0.0",
"jest-junit-reporter": "^1.1.0",
"prettier": "^2.2.1",
"ts-jest": "^25.2.0",
"typescript": "^4.7.4"
},
"jest": {
"coverageReporters": [
"cobertura",
"html"
]
},
"jest-junit": {
"suiteName": "jest tests",
"outputDirectory": "build/test_reports",
"output": "./.tmp/test/TEST-RESULTS.xml",
"classNameTemplate": "{classname} - {title}",
"titleTemplate": "{classname} - {title}",
"ancestorSeparator": " > ",
"usePathForSuiteName": "true"
}
}