aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/javascript/package.json
blob: a2f0cd2eba049ddcf099f6c0bddd43375ca4cefb (plain)
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
{
	"scripts": {
		"test": "jest",
		"test:watch": "jest --watch",
		"test:coverage": "jest --coverage"
	},
	"jest": {
		"verbose": true,
		"coverageDirectory": "${project.build.directory}/clamp-ui/coverage",
		"collectCoverageFrom": [
			"**/designer/**/*.{js,jsx}",
			"!**/designer/lib/**"
		],
		"rootDir": "${project.build.directory}/clamp-ui",
		"roots": [
			"${project.basedir}/src/test/javascript/",
			"<rootDir>/designer/"
		],
		"moduleDirectories": [
			"${project.build.directory}/clamp-ui/node/node_modules",
			"${project.build.directory}/clamp-ui/node_modules",
			"<rootDir>/designer"
		],
		"coverageReporters": [
			"lcov"
		]
	},
	"devDependencies": {
		"angular": "1.3.2",
		"angular-resource": "1.3.2",
		"angular-cookies": "1.3.2",
		"angular-route": "1.3.2",
		"angular-mocks": "1.3.2",
		"angular-animate": "1.3.2",
		"angular-sanitize": "1.3.2",
		"angular-touch": "1.3.2",
		"angular-dialog-service": "5.3.0",
		"angular-loading-bar": "0.9.0",
		"jquery": "3.3.1",
		"popper.js": "1.14.4",
		"bootstrap": "4.1.1",
		"angular-ui-bootstrap": "2.5.6",
		"jest": "^23.6.0",
		"jest-cli": "^21.2.1"
	}
}