-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.87 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
{
"name": "dojo-sdk",
"version": "0.4.7",
"main": "build/Main.js",
"license": "MIT",
"author": "Elya Livshitz",
"scripts": {
"format": "prettier --config .prettierrc 'src/**/*.ts' 'tests/**/*.ts' --write",
"build": "tsc",
"build:browser": "npx -p pax.libx.js pax-browserify src/browser.ts dist -y --minify && du -sh dist/",
"watch": "tsc -w",
"main": "node build/Main.js",
"test": "jest",
"test:ci": "jest --ci --reporters=default --reporters=jest-junit --coverage --coverageReporters=cobertura --coverageReporters=html",
"test:debug": "node --inspect ./node_modules/jest/bin/jest.js --runInBand --colors --verbose",
"bump": "./bump.sh"
},
"bin": {
"my-command": "bin/cli.sh"
},
"files": [
"bin/**",
"dist/**",
"build/**",
"src/**",
"*.js",
"*.ts"
],
"dependencies": {
"@types/faker": "^5.5.9",
"cors": "^2.8.5",
"cron-parser": "^4.1.0",
"express": "^4.17.1",
"faker": "^5.5.3",
"libx.js": "^2.17.1"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.25",
"jest": "^26.6.3",
"jest-junit": "^12.0.0",
"jest-junit-reporter": "^1.1.0",
"prettier": "^2.2.1",
"ts-jest": "^26.5.0",
"typescript": "^4.1.3"
},
"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"
}
}